AlterTableUsingIndexStep |
AlterTableStep.add(Constraint constraint) |
Add an ADD CONSTRAINT clause to the ALTER TABLE
statement.
|
CreateTableConstraintStep |
CreateTableConstraintStep.constraint(Constraint constraint) |
Add a constraint to the table.
|
CreateTableConstraintStep |
CreateTableConstraintStep.constraints(Constraint... constraints) |
Add constraints to the table.
|
AlterTableFinalStep |
AlterTableStep.drop(Constraint 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.dropForeignKey(Constraint constraint) |
Add a DROP FOREIGN KEY clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableStep.dropPrimaryKey(Constraint constraint) |
Add a DROP PRIMARY KEY clause to the
ALTER TABLE statement.
|
InsertOnConflictDoUpdateStep<R> |
InsertOnDuplicateStep.onConflictOnConstraint(Constraint constraint) |
Add a ON CONFLICT ON CONSTRAINT clause to this INSERT statement.
|
void |
InsertQuery.onConflictOnConstraint(Constraint constraint) |
Whether use a ON CONFLICT or
ON CONFLICT ON CONSTRAINT clause in this INSERT
statement.
|
AlterTableRenameConstraintToStep |
AlterTableStep.renameConstraint(Constraint oldName) |
Add a RENAME CONSTRAINT clause to the ALTER TABLE
statement.
|
AlterTableFinalStep |
AlterTableRenameConstraintToStep.to(Constraint newName) |
Specify a new constraint name.
|