Skip to content

Commit

Permalink
Fix #2991: remove enterprise feature from community
Browse files Browse the repository at this point in the history
  • Loading branch information
DoodleBobBuffPants committed Oct 29, 2020
1 parent d525f6e commit 0806304
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion flyway-core/src/main/java/org/flywaydb/core/Flyway.java
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,11 @@ public MigrateResult execute(MigrationResolver migrationResolver,
}
}

if (!nonEmptySchemas.isEmpty() && !configuration.isSkipExecutingMigrations()) {
if (!nonEmptySchemas.isEmpty()



) {
if (configuration.isBaselineOnMigrate()) {
doBaseline(schemaHistory, callbackExecutor, database);
} else {
Expand Down

0 comments on commit 0806304

Please sign in to comment.