Initial commit.
This commit is contained in:
5
vim/snippets/sql/create.snippet
Executable file
5
vim/snippets/sql/create.snippet
Executable file
@@ -0,0 +1,5 @@
|
||||
DROP TABLE IF EXISTS \`${1:name}\`;
|
||||
CREATE TABLE \`$1\` (
|
||||
\`${2:id}\` ${3:integer unsigned}${4: NOT NULL}${5: AUTO_INCREMENT}${6:,}${10}
|
||||
${7:PRIMARY KEY (\`$2\`)}
|
||||
) ENGINE=${8:MyISAM} DEFAULT CHARSET=${9:latin1};
|
||||
Reference in New Issue
Block a user