Flyway Check Applied Migrations Setting
Published 15 January 2025
This is available in Flyway CLI only
Description
An array of migration ids (migration versions or repeatable descriptions) to apply to create snapshots (generated via info
)
Type
String array
Default
none
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
./flyway check -changes -check.appliedMigrations="1,2,3"
TOML Configuration File
[flyway.check]
appliedMigrations = ["1", "2", "3"]
Configuration File
flyway.check.appliedMigrations=1,2,3