Comma-separated list of file name suffixes for SQL migrations.
SQL migrations have the following file name structure: prefixVERSIONseparatorDESCRIPTIONsuffix, which using the defaults translates to V1_1__My_description.sql
Multiple suffixes (like .sql,.pkg,.pkb) can be specified for easier compatibility with other tools such as editors with specific file associations.
.sql
./flyway -sqlMigrationSuffixes=".sql,.pkg,.pkb" info
flyway.sqlMigrationSuffixes=.sql,.pkg,.pkb
FLYWAY_SQL_MIGRATION_SUFFIXES=.sql,.pkg,.pkb
Flyway.configure()
.sqlMigrationSuffixes(".sql,.pkg,.pkb")
.load()
flyway {
sqlMigrationSuffixes = '.sql,.pkg,.pkb'
}
<configuration>
<sqlMigrationSuffixes>.sql,.pkg,.pkb</sqlMigrationSuffixes>
</configuration>