Flyway Fail On Missing Locations Setting
Published 15 January 2025
Description
Whether to fail if a location specified in the
locations
option doesn't exist.
Type
Boolean
Default
false
Usage
Flyway Desktop
This can't be set in a config file via Flyway Desktop, although it will be honoured, and it can be configured as an advanced parameter in operations on the Migrations page.
Command-line
. Namespace/Flyway locations) option doesn't exist.
## Type
Boolean
## Default
`false`
## Usage
### Flyway Desktop
This can't be set in a config file via Flyway Desktop, although it will be honoured, and it can be configured as an advanced parameter in operations on the Migrations page.
### Command-line
```powershell
. flyway -failOnMissingLocations="true" migrate
TOML Configuration File
[flyway]
failOnMissingLocations = true
Configuration File
flyway.failOnMissingLocations=true
Environment Variable
FLYWAY_FAIL_ON_MISSING_LOCATIONS=true
API
Flyway.configure()
.failOnMissingLocations(true)
.load()
Gradle
flyway {
failOnMissingLocations = true
}
Maven
<configuration>
<failOnMissingLocations>true</failOnMissingLocations>
</configuration>