Flyway Tags Fail On Missing Setting
Published 12 March 2025
- Status: Preview
Description
By default, flyway will raise an error if a migration referenced by tags.definition
does not exist.
The failOnMissing
setting can be set to false
to ignore referenced migrations rather than raise an error.
Type
Boolean
Default
true
Usage
Flyway Desktop
This can't be added to a configuration file via Flyway Desktop.
Command-line
./flyway "-tags.failOnMissing=false" info
TOML Configuration File
[flyway.tags]
failOnMissing = false