AlterTableFinalStep |
AlterTableStep.add(String field,
DataType<?> type) |
Add an ADD COLUMN clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.add(Collection<? extends FieldOrConstraint> fields) |
Add an ADD clause with multiple columns or constraints to
the ALTER TABLE statement.
|
AlterTableFinalStep |
AlterTableStep.add(Field<?> field) |
Add an ADD COLUMN clause to the ALTER TABLE
statement.
|
<T> AlterTableFinalStep |
AlterTableStep.add(Field<T> field,
DataType<T> type) |
Add an ADD COLUMN clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.add(FieldOrConstraint... fields) |
Add an ADD clause with multiple columns or constraints to
the ALTER TABLE statement.
|
AlterTableFinalStep |
AlterTableStep.add(Name field,
DataType<?> type) |
Add an ADD COLUMN clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.addColumn(String field,
DataType<?> type) |
Add an ADD COLUMN clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.addColumn(Field<?> field) |
Add an ADD COLUMN clause to the ALTER TABLE
statement.
|
<T> AlterTableFinalStep |
AlterTableStep.addColumn(Field<T> field,
DataType<T> type) |
Add an ADD COLUMN clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.addColumn(Name field,
DataType<?> type) |
Add an ADD COLUMN clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.addColumnIfNotExists(String field,
DataType<?> type) |
Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.addColumnIfNotExists(Field<?> field) |
Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement.
|
<T> AlterTableFinalStep |
AlterTableStep.addColumnIfNotExists(Field<T> field,
DataType<T> type) |
Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.addColumnIfNotExists(Name field,
DataType<?> type) |
Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.addIfNotExists(String field,
DataType<?> type) |
Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.addIfNotExists(Field<?> field) |
Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement.
|
<T> AlterTableFinalStep |
AlterTableStep.addIfNotExists(Field<T> field,
DataType<T> type) |
Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.addIfNotExists(Name field,
DataType<?> type) |
Add an ADD COLUMN IF NOT EXISTS clause to the ALTER TABLE
statement.
|
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 |
AlterTableStep.drop(Constraint constraint) |
Add a DROP CONSTRAINT clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.dropConstraint(String constraint) |
Add a DROP CONSTRAINT clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.dropConstraint(Constraint constraint) |
Add a DROP CONSTRAINT clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.dropConstraint(Name constraint) |
Add a DROP CONSTRAINT clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.dropForeignKey(String constraint) |
Add a DROP FOREIGN KEY clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.dropForeignKey(Constraint constraint) |
Add a DROP FOREIGN KEY clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.dropForeignKey(Name constraint) |
Add a DROP FOREIGN KEY clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableAlterStep.dropNotNull() |
Make the column nullable.
|
AlterTableFinalStep |
AlterTableStep.dropPrimaryKey() |
Add a DROP PRIMARY KEY clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.dropPrimaryKey(String constraint) |
Add a DROP PRIMARY KEY clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.dropPrimaryKey(Constraint constraint) |
Add a DROP PRIMARY KEY clause to the
ALTER TABLE statement.
|
AlterTableFinalStep |
AlterTableStep.dropPrimaryKey(Name constraint) |
Add a DROP PRIMARY KEY clause to the ALTER TABLE
statement.
|
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.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.
|