documentation/Reference/Configuration/Flyway Namespace/Flyway Group Setting.md
Whether to group all pending migrations together in the same transaction when applying them (only recommended for databases with support for DDL transactions)
Note:
Boolean
false
This can't be set in a config file via Flyway Desktop, although it will be honoured, and it can be configured as an advanced parameter in operations on the Migrations page.
./flyway -group="true" info
[flyway]
group = true
flyway.group=true
FLYWAY_GROUP=true
Flyway.configure()
.group(true)
.load()
flyway {
group = true
}
<configuration>
<group>true</group>
</configuration>