I have two Git repositories, one for the versioning of my application and the other for the versioning of the DB schema.
I would like to use a continuous integration and deployment system, so I need to link each version of the application with the corresponding version of the DB schema, so that the CI system can pull the right application and DB versions and deploy them.
Is there any way to do this thing with Git?
Thank you
Finally the solution I'm using is to link the Maven version of the DB Schema project into the pom.xml of the DAL of the web application.
This way the web application includes the right entities from the right DAL, and the DAL is related to the right DB schema by means of the Maven version.