Whether to fail if a location specified in the locations
option doesn’t exist.
false
./flyway -failOnMissingLocations="true" migrate
flyway.failOnMissingLocations=true
FLYWAY_FAIL_ON_MISSING_LOCATIONS=true
Flyway.configure()
.failOnMissingLocations(true)
.load()
flyway {
failOnMissingLocations = true
}
<configuration>
<failOnMissingLocations>true</failOnMissingLocations>
</configuration>