[jOOQ/jOOQ#9506] Rename Settings.migrationAllowsUndo to migrationAllowUndo

This commit is contained in:
Lukas Eder 2024-11-28 12:55:13 +01:00
parent 82ded123e7
commit a7c9cee82f

View File

@ -66,7 +66,7 @@ public class CleanMojo extends AbstractMigrateMojo {
@Override
final void execute1(Migration migration) throws Exception {
Commit root = migration.to().root();
root.settings().setMigrationAllowsUndo(true);
root.settings().setMigrationAllowUndo(true);
migration.dsl().migrations().migrateTo(root).execute();
}
}