public interface ConstraintForeignKeyReferencesStep1<T1>
The step in the
Constraint
construction DSL API that allows for
matching a FOREIGN KEY
clause with a REFERENCES
clause.- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescription@NotNull ConstraintForeignKeyOnStep
references(String table)
Add aREFERENCES
clause to theCONSTRAINT
, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStep
references(String table, String field1)
Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names.@NotNull ConstraintForeignKeyOnStep
references(Name table)
Add aREFERENCES
clause to theCONSTRAINT
, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStep
references(Name table, Name field1)
Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names.@NotNull ConstraintForeignKeyOnStep
references(Table<?> table)
Add aREFERENCES
clause to theCONSTRAINT
, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStep
references(Table<?> table, Field<T1> field1)
Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names.
-
Method Details
-
references
Add aREFERENCES
clause to theCONSTRAINT
, implicitly referencing the primary key. -
references
Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names. -
references
Add aREFERENCES
clause to theCONSTRAINT
, implicitly referencing the primary key. -
references
Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names. -
references
Add aREFERENCES
clause to theCONSTRAINT
, implicitly referencing the primary key. -
references
Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names.
-