java.lang.Object
org.jooq.MigrationConfiguration
A configuration type for use with the various 
Meta.migrateTo(Meta)
 methods.
 This is EXPERIMENTAL functionality and subject to change in future jOOQ versions.
- Author:
- Lukas Eder
- 
Constructor SummaryConstructorsConstructorDescriptionCreate a new default export configuration instance.
- 
Method SummaryModifier and TypeMethodDescriptionbooleanWhetherALTER TABLEstatements should add multiple columns and constraints in a single statement where supported.alterTableAddMultiple(boolean newAlterTableAddMultiple)WhetherALTER TABLEstatements should add multiple columns and constraints in a single statement where supported.booleanWhetherALTER TABLE ..alterTableDropCascade(boolean newAlterTableDropCascade)WhetherALTER TABLE ..booleanWhetherALTER TABLEstatements should add multiple columns and constraints in a single statement where supported.alterTableDropMultiple(boolean newAlterTableDropMultiple)WhetherALTER TABLEstatements should drop multiple columns and constraints in a single statement where supported.booleanWhether the views should be (create-or-)replaced or dropped and re-created.createOrReplaceView(boolean newCreateOrReplaceView)Whether the views should be (create-or-)replaced or dropped and re-created.booleanWhetherDROP SCHEMAstatements should have aCASCADEclause where supported.dropSchemaCascade(boolean newDropSchemaCascade)WhetherDROP SCHEMAstatements should have aCASCADEclause where supported.booleanWhetherDROP TABLEstatements should have aCASCADE [ CONSTRAINTS ]clause where supported.dropTableCascade(boolean newDropTableCascade)WhetherDROP TABLEstatements should have aCASCADE [ CONSTRAINTS ]clause where supported.booleanWhether the column order should be respected in a migration.respectColumnOrder(boolean newRespectColumnOrder)Whether the column order should be respected in a migration.
- 
Constructor Details- 
MigrationConfigurationpublic MigrationConfiguration()Create a new default export configuration instance.
 
- 
- 
Method Details- 
alterTableAddMultiplepublic final boolean alterTableAddMultiple()WhetherALTER TABLEstatements should add multiple columns and constraints in a single statement where supported.
- 
alterTableAddMultipleWhetherALTER TABLEstatements should add multiple columns and constraints in a single statement where supported.
- 
alterTableDropMultiplepublic final boolean alterTableDropMultiple()WhetherALTER TABLEstatements should add multiple columns and constraints in a single statement where supported.
- 
alterTableDropMultipleWhetherALTER TABLEstatements should drop multiple columns and constraints in a single statement where supported.
- 
dropSchemaCascadepublic final boolean dropSchemaCascade()WhetherDROP SCHEMAstatements should have aCASCADEclause where supported.
- 
dropSchemaCascadeWhetherDROP SCHEMAstatements should have aCASCADEclause where supported.
- 
dropTableCascadepublic final boolean dropTableCascade()WhetherDROP TABLEstatements should have aCASCADE [ CONSTRAINTS ]clause where supported.
- 
dropTableCascadeWhetherDROP TABLEstatements should have aCASCADE [ CONSTRAINTS ]clause where supported.
- 
alterTableDropCascadepublic final boolean alterTableDropCascade()WhetherALTER TABLE .. DROPstatements should have aCASCADE [ CONSTRAINTS ]clause where supported.
- 
alterTableDropCascadeWhetherALTER TABLE .. DROPstatements should have aCASCADE [ CONSTRAINTS ]clause where supported.
- 
createOrReplaceViewpublic final boolean createOrReplaceView()Whether the views should be (create-or-)replaced or dropped and re-created.
- 
createOrReplaceViewWhether the views should be (create-or-)replaced or dropped and re-created.
- 
respectColumnOrderpublic final boolean respectColumnOrder()Whether the column order should be respected in a migration.
- 
respectColumnOrderWhether the column order should be respected in a migration.
 
-