The file name prefix for undo SQL migrations.
Undo SQL migrations are responsible for undoing the effects of the versioned migration with the same version.
They have the following file name structure: prefixVERSIONseparatorDESCRIPTIONsuffix, which using the defaults translates to U1.1__My_description.sql
U
./flyway -undoSqlMigrationPrefix="B" info
flyway.undoSqlMigrationPrefix=B
FLYWAY_UNDO_SQL_MIGRATION_PREFIX=B
Flyway.configure()
.undoSqlMigrationPrefix("B")
.load()
flyway {
undoSqlMigrationPrefix = 'B'
}
<configuration>
<undoSqlMigrationPrefix>B</undoSqlMigrationPrefix>
</configuration>