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 SummaryModifier and TypeMethodDescription@NotNull ConstraintForeignKeyOnStepreferences(String table) Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepreferences(String table, String field1) Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepreferences(Name table) Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepreferences(Name table, Name field1) Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.@NotNull ConstraintForeignKeyOnStepreferences(Table<?> table) Add aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.@NotNull ConstraintForeignKeyOnStepreferences(Table<?> table, Field<T1> field1) Add aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
- 
Method Details- 
referencesAdd aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.
- 
referencesAdd aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
- 
referencesAdd aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.
- 
referencesAdd aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
- 
referencesAdd aREFERENCESclause to theCONSTRAINT, implicitly referencing the primary key.
- 
referencesAdd aREFERENCESclause to theCONSTRAINT, referencing a key by column names.
 
-