The file name prefix for repeatable SQL migrations.
Repeatable SQL migrations have the following file name structure: prefixSeparatorDESCRIPTIONsuffix, which using the defaults translates to R__My_description.sql
R
./flyway -repeatableSqlMigrationPrefix="A" info
flyway.repeatableSqlMigrationPrefix=A
FLYWAY_REPEATABLE_SQL_MIGRATION_PREFIX=A
Flyway.configure()
.repeatableSqlMigrationPrefix("A")
.load()
flyway {
repeatableSqlMigrationPrefix = 'A'
}
<configuration>
<repeatableSqlMigrationPrefix>A</repeatableSqlMigrationPrefix>
</configuration>