Redgate Flyway

For PostgreSQL users - where are your DBs hosted?

Flyway Placeholder Separator Setting

Description

The separator of default placeholders

Type

String

Default

":"

Usage

Flyway Desktop

This can't be configured via Flyway Desktop, although it will be honoured.

Command-line

./flyway -placeholderSeparator="_" info

TOML Configuration File

[flyway]
placeholderSeparator = "_"

Configuration File

flyway.placeholderSeparator=_

Environment Variable

FLYWAY_PLACEHOLDER_SEPARATOR=_

API

Flyway.configure()
    .placeholderSeparator("_")
    .load()

Gradle

flyway {
    placeholderSeparator = '_'
}

Maven

<configuration>
    <placeholderSeparator>_</placeholderSeparator>
</configuration>

Didn't find what you were looking for?