Skip to content

Commit

Permalink
Allow deploying multiple versions of LibertyBans simultaneously
Browse files Browse the repository at this point in the history
It is better to lend credence to capable users than to punish
  them unduly merely because not all users are as experienced.
  • Loading branch information
A248 committed May 21, 2021
1 parent 712ceff commit 59dc656
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ private Flyway createFlyway(HikariDataSource hikariDataSource, boolean refresher
return Flyway.configure(getClass().getClassLoader())
.dataSource(hikariDataSource).table("libertybans_flyway")
.locations(locations.toArray(String[]::new))
.ignoreFutureMigrations(false).validateMigrationNaming(true).group(true)
.validateMigrationNaming(true).group(true)
// Allows usage with existing tables, i.e. from other software
.baselineOnMigrate(true).baselineVersion("0.0")
.load();
Expand Down

0 comments on commit 59dc656

Please sign in to comment.