ソースを参照

use constant for flyway table name

tags/2.0.1
Jonathan Cobb 4年前
コミット
4ff5174fe6
1個のファイルの変更3行の追加2行の削除
  1. +3
    -2
      wizard-server/src/main/java/org/cobbzilla/wizard/server/listener/FlywayMigrationListener.java

+ 3
- 2
wizard-server/src/main/java/org/cobbzilla/wizard/server/listener/FlywayMigrationListener.java ファイルの表示

@@ -21,6 +21,7 @@ import static org.cobbzilla.util.time.TimeUtil.DATE_FORMAT_YYYYMMDD;
@Slf4j
public class FlywayMigrationListener<C extends RestServerConfiguration> extends RestServerLifecycleListenerBase<C> {

public static final String FLYWAY_TABLE_NAME = "flyway_schema_history";
protected RestServer server;

@Override public void beforeStart(RestServer server) {
@@ -40,10 +41,10 @@ public class FlywayMigrationListener<C extends RestServerConfiguration> extends
// check to see if flyway tables exist
boolean baseline = false;
try {
configuration.execSql("SELECT * from flyway_schema_history");
configuration.execSql("SELECT * from " + FLYWAY_TABLE_NAME);
} catch (UncheckedSqlException e) {
if (e.getSqlException() != null && e.getSqlException() instanceof PSQLException && e.getMessage().contains(" does not exist")) {
log.warn("flyway_schema_history table does not exist, will baseline DB");
log.warn(FLYWAY_TABLE_NAME + " table does not exist, will baseline DB");
baseline = true;
} else {
throw e;


読み込み中…
キャンセル
保存