The file name separator for Sql migrations.
Versioned SQL migrations have the following file name structure: prefixVERSIONseparatorDESCRIPTIONsuffix, which using the defaults translates to V1.1__My_description.sql
__
./flyway -sqlMigrationSeparator="-" info
flyway.sqlMigrationSeparator=-
FLYWAY_SQL_MIGRATION_SEPARATOR=-
Flyway.configure()
.sqlMigrationSeparator("-")
.load()
flyway {
sqlMigrationSeparator = '-'
}
<configuration>
<sqlMigrationSeparator>-</sqlMigrationSeparator>
</configuration>