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

Command line

./migratedb -repeatableSqlMigrationPrefix="A" info

Configuration File

migratedb.repeatableSqlMigrationPrefix=A

Environment Variable

MIGRATEDB_REPEATABLE_SQL_MIGRATION_PREFIX=A

API

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