Flyway

Repeatable SQL Migration Prefix

Repeatable SQL Migration Prefix

Description

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

Default

R

Usage

Commandline

./flyway -repeatableSqlMigrationPrefix="A" info

TOML Configuration File

[flyway]
repeatableSqlMigrationPrefix = "A"

Configuration File

flyway.repeatableSqlMigrationPrefix=A

Environment Variable

FLYWAY_REPEATABLE_SQL_MIGRATION_PREFIX=A

API

Flyway.configure()
    .repeatableSqlMigrationPrefix("A")
    .load()

Gradle

flyway {
    repeatableSqlMigrationPrefix = 'A'
}

Maven

<configuration>
    <repeatableSqlMigrationPrefix>A</repeatableSqlMigrationPrefix>
</configuration>

Didn't find what you were looking for?