Skip to content
Snippets Groups Projects
Commit 1c4b73d9 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

allow out of order database upgrades in flyway

parent a2a75379
No related branches found
No related tags found
1 merge request!368fresh install of debian package uses flyway
Pipeline #
......@@ -26,6 +26,7 @@ public class CustomDatabasePopulator implements DatabasePopulator {
Flyway flyway = new Flyway();
flyway.setDataSource(url, user, password);
flyway.setBaselineVersionAsString("12.1.0");
flyway.setOutOfOrder(true);
flyway.setBaselineOnMigrate(true);
flyway.migrate();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment