Redgate Summit – The Database DevOps Transformation Watch now
PASS Data Community Summit logo

PASS Data Community Summit

A hybrid conference in Seattle and online

15-18 November

Flyway Documentation

This documentation is deprecated. The new documentation can now be found on documentation.red-gate.com

Poll

Placeholder Prefix

Description

The prefix of every placeholder

Default

${

Usage

Commandline

./flyway -placeholderPrefix="$$" info

Configuration File

flyway.placeholderPrefix=$$

Environment Variable

FLYWAY_PLACEHOLDER_PREFIX=$$

API

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

Gradle

flyway {
    placeholderPrefix = '$$'
}

Maven

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