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

Group

Description

Whether to group all pending migrations together in the same transaction when applying them (only recommended for databases with support for DDL transactions)

Default

false

Usage

Commandline

./flyway -group="true" info

Configuration File

flyway.group=true

Environment Variable

FLYWAY_GROUP=true

API

Flyway.configure()
    .group(true)
    .load()

Gradle

flyway {
    group = true
}

Maven

<configuration>
    <group>true</group>
</configuration>