How to change the schema history table name
Our app has flyway which has added around 100 migrations to the prod env over the last years.
It uses a table called “schema_version” to track the flyway history.
flyway error: how to fix: “Detected applied migration not resolved locally”
We had flyway scripts from 1__xx to 70_xx
I have just added new ones from 71_xx to 83_xxx
Unsupported Database: H2 2.2
When upgrading org.flywaydb:flyway-core:9.22.3
to 10.15.2
I seem to be forced to add a database specific dependency.
flyway: is there any way to run flyway scripts which are embedded in a java project manually against local db?
We have a very large spring boot app with many modules. This java is almost impossible to run locally against a local db.