Create account, chr tables & save chr to Postgres

This commit is contained in:
P0nk
2024-09-14 17:33:42 +02:00
parent f827e23ccc
commit e57d2a9ee2
12 changed files with 247 additions and 17 deletions

View File

@@ -24,7 +24,11 @@ public class FlywayRunner {
"server-username", dbConfig.username(),
"server-password", dbConfig.password())
)
.cleanDisabled(!dbConfig.clean())
.load();
if (dbConfig.clean()) {
flyway.clean();
}
flyway.migrate();
}
}