-
public interface ConstraintForeignKeyReferencesStepNThe step in theConstraintconstruction DSL API that allows for matching aFOREIGN KEYclause with aREFERENCESclause.- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConstraintForeignKeyOnStepreferences(String table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.ConstraintForeignKeyOnStepreferences(String table, String... fields)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.ConstraintForeignKeyOnStepreferences(Name table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.ConstraintForeignKeyOnStepreferences(Name table, Name... fields)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.ConstraintForeignKeyOnStepreferences(Table<?> table)Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.ConstraintForeignKeyOnStepreferences(Table<?> table, Field<?>... fields)Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
-
-
-
Method Detail
-
references
ConstraintForeignKeyOnStep references(String table)
Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.
-
references
ConstraintForeignKeyOnStep references(String table, String... fields)
Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
-
references
ConstraintForeignKeyOnStep references(Name table)
Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.
-
references
ConstraintForeignKeyOnStep references(Name table, Name... fields)
Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
-
references
ConstraintForeignKeyOnStep references(Table<?> table)
Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.
-
references
ConstraintForeignKeyOnStep references(Table<?> table, Field<?>... fields)
Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
-
-