Allows migrations to be run “out of order”.
If you already have versions 1.0
and 3.0
applied, and now a version 2.0
is found, it will be applied too instead of being ignored.
false
./flyway -outOfOrder="true" info
flyway.outOfOrder=true
FLYWAY_OUT_OF_ORDER=true
Flyway.configure()
.outOfOrder(true)
.load()
flyway {
outOfOrder = true
}
<configuration>
<outOfOrder>true</outOfOrder>
</configuration>