dotar/vim/snippets/sql/add.snippet

2 lines
132 B
Plaintext
Raw Normal View History

2011-11-17 15:45:33 -06:00
ALTER TABLE \`${1:name}\` ADD COLUMN \`${2:column}\` ${3:type}${4: NOT NULL}${5: DEFAULT 0}${6: AUTO_INCREMENT} ${7:AFTER \`name`};