Skip to content

Commit

Permalink
Merge pull request #730 from jackalcooper/patch-1
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
groue authored Mar 11, 2020
2 parents 039dd37 + 813f28e commit 6a58286
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3896,7 +3896,7 @@ Other **table constraints** can involve several columns:
t.primaryKey(["a", "b"])

// UNIQUE (a, b) ON CONFLICT REPLACE,
t.uniqueKey(["a", "b"], onConfict: .replace)
t.uniqueKey(["a", "b"], onConflict: .replace)

// FOREIGN KEY (a, b) REFERENCES parents(c, d),
t.foreignKey(["a", "b"], references: "parents")
Expand Down

0 comments on commit 6a58286

Please sign in to comment.