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

Installed By

Description

The username that will be recorded in the schema history table as having applied the migration.

Default

Current database user

Usage

Commandline

./flyway -installedBy="ci-pipeline" clean

Configuration File

flyway.installedBy=ci-pipeline

Environment Variable

FLYWAY_INSTALLED_BY=ci-pipeline

API

Flyway.configure()
    .installedBy("ci-pipeline")
    .load()

Gradle

flyway {
    installedBy = 'ci-pipeline'
}

Maven

<configuration>
    <installedBy>ci-pipeline</installedBy>
</configuration>