I must keep a table's columns as specified in a specification that changes quite often.
In MySQL Workbench, adding a new columns after all the others is easy, but I can't find a way to insert a new column where I want.
It is a problem, because I want to keep the columns ordered just like in the specification.
So I do it the painful way:
- Create the new column at the bottom
- Repeat Right-click-"Move up" tens of times to crawl my way up to the desired position
I am sure there is a more efficient way to achieve this?
Even a shortcut to avoid the right-click would save me a lot of time.
Thanks a lot!

ALTER TABLE ADD ... FIRST? dev.mysql.com/doc/refman/5.1/en/alter-table.html – pascal Jul 28 '10 at 8:57