Skip to content

Commit

Permalink
[#6129] ConstraintForeignKeyReferencesStepN.references() should retur…
Browse files Browse the repository at this point in the history
…n ConstraintForeignKeyOnStep
  • Loading branch information
lukaseder committed Apr 21, 2017
1 parent 1f52094 commit cfd6785
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -47,15 +47,15 @@ public interface ConstraintForeignKeyReferencesStepN {
/** /**
* Add a <code>REFERENCES</code> clause to the <code>CONSTRAINT</code>. * Add a <code>REFERENCES</code> clause to the <code>CONSTRAINT</code>.
*/ */
ConstraintFinalStep references(String table, String... fields); ConstraintForeignKeyOnStep references(String table, String... fields);


/** /**
* Add a <code>REFERENCES</code> clause to the <code>CONSTRAINT</code>. * Add a <code>REFERENCES</code> clause to the <code>CONSTRAINT</code>.
*/ */
ConstraintFinalStep references(Name table, Name... fields); ConstraintForeignKeyOnStep references(Name table, Name... fields);


/** /**
* Add a <code>REFERENCES</code> clause to the <code>CONSTRAINT</code>. * Add a <code>REFERENCES</code> clause to the <code>CONSTRAINT</code>.
*/ */
ConstraintFinalStep references(Table<?> table, Field<?>... fields); ConstraintForeignKeyOnStep references(Table<?> table, Field<?>... fields);
} }

0 comments on commit cfd6785

Please sign in to comment.