public interface ConstraintForeignKeyReferencesStepN
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 TypeMethodDescriptionreferences(String table)
Add aREFERENCES
clause to theCONSTRAINT
, implicitly referencing the primary key.references(String table, String... fields)
Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names.references(String table, Collection<? extends String> fields)
Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names.references(Name table)
Add aREFERENCES
clause to theCONSTRAINT
, implicitly referencing the primary key.references(Name table, Collection<? extends Name> fields)
Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names.references(Name table, Name... fields)
Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names.references(Table<?> table)
Add aREFERENCES
clause to theCONSTRAINT
, implicitly referencing the primary key.references(Table<?> table, Collection<? extends Field<?>> fields)
Add aREFERENCES
clause to theCONSTRAINT
, referencing a key by column names.references(Table<?> table, Field<?>... fields)
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
, 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
, 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
, referencing a key by column names.
-