Whether to group all pending migrations together in the same transaction when applying them (only recommended for databases with support for DDL transactions)
false
./flyway -group="true" info
flyway.group=true
FLYWAY_GROUP=true
Flyway.configure()
.group(true)
.load()
flyway {
group = true
}
<configuration>
<group>true</group>
</configuration>