@NotNull AlterDomainFinalStep |
AlterDomainStep.add(Constraint addConstraint) |
Add the ADD clause to the ALTER DOMAIN statement.
|
@NotNull AlterTableUsingIndexStep |
AlterTableStep.add(Constraint constraint) |
Add an ADD CONSTRAINT clause to the ALTER TABLE
statement.
|
@NotNull AlterTableAlterConstraintStep |
AlterTableStep.alter(Constraint constraint) |
Add an ALTER CONSTRAINT clause to the ALTER TABLE
statement.
|
@NotNull AlterTableAlterConstraintStep |
AlterTableStep.alterConstraint(Constraint constraint) |
Add an ALTER CONSTRAINT clause to the ALTER TABLE
statement.
|
@NotNull CreateTableConstraintStep |
CreateTableConstraintStep.constraint(Constraint constraint) |
Add a constraint to the table.
|
@NotNull CreateDomainConstraintStep |
CreateDomainConstraintStep.constraints(Constraint... constraints) |
Add the CONSTRAINTS clause to the CREATE DOMAIN statement.
|
@NotNull CreateTableConstraintStep |
CreateTableConstraintStep.constraints(Constraint... constraints) |
Add constraints to the table.
|
@NotNull AlterTableDropStep |
AlterTableStep.drop(Constraint constraint) |
Add a DROP CONSTRAINT clause to the ALTER TABLE
statement.
|
@NotNull AlterDomainDropConstraintCascadeStep |
AlterDomainStep.dropConstraint(Constraint dropConstraint) |
Add the DROP CONSTRAINT clause to the ALTER DOMAIN statement.
|
@NotNull AlterTableDropStep |
AlterTableStep.dropConstraint(Constraint constraint) |
Add a DROP CONSTRAINT clause to the ALTER TABLE
statement.
|
@NotNull AlterDomainDropConstraintCascadeStep |
AlterDomainStep.dropConstraintIfExists(Constraint dropConstraint) |
Add the DROP CONSTRAINT IF EXISTS clause to the ALTER DOMAIN statement.
|
@NotNull AlterTableDropStep |
AlterTableStep.dropConstraintIfExists(Constraint constraint) |
Add a DROP CONSTRAINT IF EXISTS clause to the ALTER TABLE
statement.
|
@NotNull AlterTableDropStep |
AlterTableStep.dropForeignKey(Constraint constraint) |
Add a DROP FOREIGN KEY clause to the ALTER TABLE
statement.
|
@NotNull AlterTableDropStep |
AlterTableStep.dropIfExists(Constraint constraint) |
Add a DROP CONSTRAINT IF EXISTS clause to the ALTER TABLE
statement.
|
@NotNull AlterTableDropStep |
AlterTableStep.dropPrimaryKey(Constraint constraint) |
Add a DROP PRIMARY KEY clause to the
ALTER TABLE statement.
|
@NotNull AlterTableDropStep |
AlterTableStep.dropUnique(Constraint constraint) |
Add a DROP UNIQUE clause to the ALTER TABLE
statement.
|
@NotNull 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.
|
@NotNull AlterDomainRenameConstraintStep |
AlterDomainStep.renameConstraint(Constraint renameConstraint) |
Add the RENAME CONSTRAINT clause to the ALTER DOMAIN statement.
|
@NotNull AlterTableRenameConstraintToStep |
AlterTableStep.renameConstraint(Constraint oldName) |
Add a RENAME CONSTRAINT clause to the ALTER TABLE
statement.
|
@NotNull AlterDomainRenameConstraintStep |
AlterDomainStep.renameConstraintIfExists(Constraint renameConstraint) |
Add the RENAME CONSTRAINT IF EXISTS clause to the ALTER DOMAIN statement.
|
@NotNull AlterDomainFinalStep |
AlterDomainRenameConstraintStep.to(Constraint renameConstraintTo) |
Add the TO clause to the ALTER DOMAIN statement.
|
AlterTableFinalStep |
AlterTableRenameConstraintToStep.to(Constraint newName) |
Specify a new constraint name.
|