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 TypeMethodDescriptionfinal booleanWhetherALTER TABLEstatements should add multiple columns and constraints in a single statement where supported.final MigrationConfigurationalterTableAddMultiple(boolean newAlterTableAddMultiple) WhetherALTER TABLEstatements should add multiple columns and constraints in a single statement where supported.final booleanWhetherALTER TABLE … DROPstatements should have aCASCADE [ CONSTRAINTS ]clause where supported.final MigrationConfigurationalterTableDropCascade(boolean newAlterTableDropCascade) WhetherALTER TABLE … DROPstatements should have aCASCADE [ CONSTRAINTS ]clause where supported.final booleanWhetherALTER TABLEstatements should add multiple columns and constraints in a single statement where supported.final MigrationConfigurationalterTableDropMultiple(boolean newAlterTableDropMultiple) WhetherALTER TABLEstatements should drop multiple columns and constraints in a single statement where supported.final booleanWhether the views should be (create-or-)replaced or dropped and re-created.final MigrationConfigurationcreateOrReplaceView(boolean newCreateOrReplaceView) Whether the views should be (create-or-)replaced or dropped and re-created.final booleanWhetherDROP SCHEMAstatements should have aCASCADEclause where supported.final MigrationConfigurationdropSchemaCascade(boolean newDropSchemaCascade) WhetherDROP SCHEMAstatements should have aCASCADEclause where supported.final booleanWhetherDROP TABLEstatements should have aCASCADE [ CONSTRAINTS ]clause where supported.final MigrationConfigurationdropTableCascade(boolean newDropTableCascade) WhetherDROP TABLEstatements should have aCASCADE [ CONSTRAINTS ]clause where supported.final booleanWhether the column order should be respected in a migration.final MigrationConfigurationrespectColumnOrder(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.
 
-