dotar/vim/snippets/sql/create.snippet
2011-11-17 16:00:49 -06:00

6 lines
216 B
Plaintext
Executable File

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};