AlterTableFinalStep |
AlterTableAddStep.after(String columnName) |
Add a AFTER clause to ALTER TABLE ..
|
AlterTableFinalStep |
AlterTableAddStep.after(Field<?> columnName) |
Add a AFTER clause to ALTER TABLE ..
|
AlterTableFinalStep |
AlterTableAddStep.after(Name columnName) |
Add a AFTER clause to ALTER TABLE ..
|
AlterTableFinalStep |
AlterTableAddStep.before(String columnName) |
Add a BEFORE clause to ALTER TABLE ..
|
AlterTableFinalStep |
AlterTableAddStep.before(Field<?> columnName) |
Add a BEFORE clause to ALTER TABLE ..
|
AlterTableFinalStep |
AlterTableAddStep.before(Name columnName) |
Add a BEFORE clause to ALTER TABLE ..
|
AlterTableFinalStep |
AlterTableDropStep.cascade() |
Add a CASCADE clause to the
ALTER TABLE ..
|
AlterTableFinalStep |
AlterTableStep.comment(String comment) |
Specify a comment for a table using MySQL's syntax.
|
AlterTableFinalStep |
AlterTableStep.comment(Comment comment) |
Specify a comment for a table using MySQL's syntax.
|
AlterTableFinalStep |
AlterTableAlterStep.default_(Field<T> expression) |
Specify a new column DEFAULT .
|
AlterTableFinalStep |
AlterTableAlterStep.default_(T literal) |
Specify a new column DEFAULT .
|
AlterTableFinalStep |
AlterTableAlterStep.defaultValue(Field<T> expression) |
Specify a new column DEFAULT .
|
AlterTableFinalStep |
AlterTableAlterStep.defaultValue(T literal) |
Specify a new column DEFAULT .
|
AlterTableFinalStep |
AlterTableAlterStep.dropDefault() |
Drop the column DEFAULT .
|
AlterTableFinalStep |
AlterTableAlterStep.dropNotNull() |
Make the column nullable.
|
AlterTableFinalStep |
AlterTableAlterConstraintStep.enforced() |
Add the ENFORCED clause to the constraint.
|
AlterTableFinalStep |
AlterTableAddStep.first() |
Add a FIRST clause to ALTER TABLE ..
|
AlterTableFinalStep |
AlterTableAlterConstraintStep.notEnforced() |
Add the NOT ENFORCED clause to the constraint.
|
AlterTableFinalStep |
AlterTableStep.renameTo(String newName) |
Add a RENAME TO clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.renameTo(Name newName) |
Add a RENAME TO clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.renameTo(Table<?> newName) |
Add a RENAME TO clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableDropStep.restrict() |
Add a RESTRICT clause to the
ALTER TABLE ..
|
AlterTableFinalStep |
AlterTableAlterStep.set(DataType<?> type) |
Specify a new column data type.
|
AlterTableFinalStep |
AlterTableAlterStep.setDefault(Field<T> expression) |
Specify a new column DEFAULT .
|
AlterTableFinalStep |
AlterTableAlterStep.setDefault(T literal) |
Specify a new column DEFAULT .
|
AlterTableFinalStep |
AlterTableAlterStep.setNotNull() |
Make the column NOT NULL .
|
AlterTableFinalStep |
AlterTableRenameColumnToStep.to(String newName) |
Specify a new column name.
|
AlterTableFinalStep |
AlterTableRenameColumnToStep.to(Field<?> newName) |
Specify a new column name.
|
AlterTableFinalStep |
AlterTableRenameColumnToStep.to(Name newName) |
Specify a new column name.
|
AlterTableFinalStep |
AlterTableRenameConstraintToStep.to(String newName) |
Specify a new constraint name.
|
AlterTableFinalStep |
AlterTableRenameConstraintToStep.to(Constraint newName) |
Specify a new constraint name.
|
AlterTableFinalStep |
AlterTableRenameConstraintToStep.to(Name newName) |
Specify a new constraint name.
|
AlterTableFinalStep |
AlterTableRenameIndexToStep.to(String newName) |
Specify a new index name.
|
AlterTableFinalStep |
AlterTableRenameIndexToStep.to(Index newName) |
Specify a new index name.
|
AlterTableFinalStep |
AlterTableRenameIndexToStep.to(Name newName) |
Specify a new index name.
|
AlterTableFinalStep |
AlterTableUsingIndexStep.usingIndex(String index) |
Add the USING INDEX clause to the statement.
|
AlterTableFinalStep |
AlterTableUsingIndexStep.usingIndex(Index index) |
Add the USING INDEX clause to the statement.
|
AlterTableFinalStep |
AlterTableUsingIndexStep.usingIndex(Name index) |
Add the USING INDEX clause to the statement.
|