Uses of Class
org.jooq.MigrationConfiguration
-
Uses of MigrationConfiguration in org.jooq
Modifier and TypeMethodDescriptionMigrationConfiguration.alterTableAddMultiple(boolean newAlterTableAddMultiple)
WhetherALTER TABLE
statements should add multiple columns and constraints in a single statement where supported.MigrationConfiguration.alterTableDropCascade(boolean newAlterTableDropCascade)
WhetherALTER TABLE ..
MigrationConfiguration.alterTableDropMultiple(boolean newAlterTableDropMultiple)
WhetherALTER TABLE
statements should drop multiple columns and constraints in a single statement where supported.MigrationConfiguration.createOrReplaceView(boolean newCreateOrReplaceView)
Whether the views should be (create-or-)replaced or dropped and re-created.MigrationConfiguration.dropSchemaCascade(boolean newDropSchemaCascade)
WhetherDROP SCHEMA
statements should have aCASCADE
clause where supported.MigrationConfiguration.dropTableCascade(boolean newDropTableCascade)
WhetherDROP TABLE
statements should have aCASCADE [ CONSTRAINTS ]
clause where supported.MigrationConfiguration.respectColumnOrder(boolean newRespectColumnOrder)
Whether the column order should be respected in a migration.Modifier and TypeMethodDescription@NotNull Queries
Meta.migrateTo(Meta other, MigrationConfiguration configuration)
Generate a migration script to get from this meta data to another one.