Skip to content

Commit

Permalink
fix(description): description typos in sql (#371)
Browse files Browse the repository at this point in the history
* fix(description): description typos in sql snippets
  • Loading branch information
notAxion authored Oct 1, 2023
1 parent 3e5377a commit ef8a9b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions snippets/sql.json
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@
"\tTO DISK ${2:filepath}",
"\tWITH ${3:DIFERENTIAL};"
],
"description": "Diferencial backup database"
"description": "Differential backup database"
},
"primaryk": {
"prefix": "primaryk",
Expand All @@ -222,22 +222,22 @@
"primarykc": {
"prefix": "primarykc",
"body": ["CONSTRAINT ${1:attribute} PRIMARY KEY(${2:attribute(s)})"],
"description": "Constraint rimary Key"
"description": "Constraint Primary Key"
},
"foreingk": {
"prefix": "foreingk",
"body": [
"FOREIGN KEY(${1:attribute}) REFERENCES ${2:tableName}(${3:attribute})"
],
"description": "Foreing Key"
"description": "Foreign Key"
},
"foreingkc": {
"prefix": "foreingkc",
"body": [
"CONSTRAINT ${1:attribute} FOREIGN KEY (${2:attribute(s)})",
"\tREFERENCES ${3:tableName}(${4:attribute})"
],
"description": "Constraint foreing Key"
"description": "Constraint foreign Key"
},
"check": {
"prefix": "check",
Expand Down

0 comments on commit ef8a9b6

Please sign in to comment.