dotar/vim/snippets/sql/rename.snippet

2 lines
134 B
Plaintext
Raw Normal View History

2011-11-17 15:45:33 -06:00
ALTER TABLE \`${1:table}\` CHANGE \`${2:old_name}\` \`${3:new_name}\` ${4:type}${5: NOT NULL}${6: DEFAULT 0}${7: AUTO_INCREMENT};${8}