Redgate Flyway

For PostgreSQL users - where are your DBs hosted?

Flyway Placeholder Prefix Setting

Description

The prefix of every placeholder

Type

String

Default

"${"

Usage

Flyway Desktop

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

Command-line

./flyway -placeholderPrefix="$$" info

TOML Configuration File

[flyway]
placeholderPrefix = "$$"

Configuration File

flyway.placeholderPrefix=$$

Environment Variable

FLYWAY_PLACEHOLDER_PREFIX=$$

API

Flyway.configure()
    .placeholderPrefix("$$")
    .load()

Gradle

flyway {
    placeholderPrefix = '$$'
}

Maven

<configuration>
    <placeholderPrefix>$$</placeholderPrefix>
</configuration>

Didn't find what you were looking for?