Redgate Flyway

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>

This documentation contains proprietary information and is protected by copyright law.
Copyright © 2026 Red Gate Software Limited. All rights reserved


Didn't find what you were looking for?