I have a spring boot application. Because of an upgrade I must update the migration files to make them compatible to the new version. This leads to hash mismatch and the application does not start. Locally I can fix it by running
mvn flyway:repair
However, in the servers the applications run in a tomcat, so I cannot execute those maven targets.
Is there another way to execute the flyway repair in an application running in tomcat?