Skip to content

Commit 93c2af7

Browse files
authored
Fix typo of foreign in sql snippets (#518)
1 parent 4b320fe commit 93c2af7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

snippets/sql.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -224,15 +224,15 @@
224224
"body": ["CONSTRAINT ${1:attribute} PRIMARY KEY(${2:attribute(s)})"],
225225
"description": "Constraint Primary Key"
226226
},
227-
"foreingk": {
228-
"prefix": "foreingk",
227+
"foreignk": {
228+
"prefix": "foreignk",
229229
"body": [
230230
"FOREIGN KEY(${1:attribute}) REFERENCES ${2:tableName}(${3:attribute})"
231231
],
232232
"description": "Foreign Key"
233233
},
234-
"foreingkc": {
235-
"prefix": "foreingkc",
234+
"foreignkc": {
235+
"prefix": "foreignkc",
236236
"body": [
237237
"CONSTRAINT ${1:attribute} FOREIGN KEY (${2:attribute(s)})",
238238
"\tREFERENCES ${3:tableName}(${4:attribute})"

0 commit comments

Comments
 (0)