AlterTableUsingIndexStep |
AlterTableStep.add(Constraint constraint) |
Add an ADD CONSTRAINT clause to the ALTER TABLE
statement.
|
AlterTableAlterConstraintStep |
AlterTableStep.alter(Constraint constraint) |
Add an ALTER CONSTRAINT clause to the ALTER TABLE
statement.
|
AlterTableAlterConstraintStep |
AlterTableStep.alterConstraint(Constraint constraint) |
Add an ALTER 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.
|
AlterTableDropStep |
AlterTableStep.drop(Constraint constraint) |
Add a DROP CONSTRAINT clause to the ALTER TABLE
statement.
|
AlterTableDropStep |
AlterTableStep.dropConstraint(Constraint constraint) |
Add a DROP CONSTRAINT clause to the ALTER TABLE
statement.
|
AlterTableDropStep |
AlterTableStep.dropConstraintIfExists(Constraint constraint) |
Add a DROP CONSTRAINT IF EXISTS clause to the ALTER TABLE
statement.
|
AlterTableDropStep |
AlterTableStep.dropForeignKey(Constraint constraint) |
Add a DROP FOREIGN KEY clause to the ALTER TABLE
statement.
|
AlterTableDropStep |
AlterTableStep.dropIfExists(Constraint constraint) |
Add a DROP CONSTRAINT IF EXISTS clause to the ALTER TABLE
statement.
|
AlterTableDropStep |
AlterTableStep.dropPrimaryKey(Constraint constraint) |
Add a DROP PRIMARY KEY clause to the
ALTER TABLE statement.
|
AlterTableDropStep |
AlterTableStep.dropUnique(Constraint constraint) |
Add a DROP UNIQUE 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.
|