Since we have many applications & services that are going to leverage flyway, I have created 2 separate project repositories: - migration-service, To store migration scripts. - flyway-service, to execute the scripts.
The Problem:
All teams are going to check in migration scripts in the migration-service(GITHUB), & then using flyway-service API they can run the migrations.
How can I always execute flyway-service with this design?
Technology used: Java, Springboot, flyway.
Please help!