Bulk ALTER TABLE with Rails 3 and MySQL Published about 17 hours ago With this commit, Rails migrations will support adding/removing/changing multiple columns via a single ALTER TABLE statement for MySQL. Let’s say you need to add 2 new columns to a table and modify data type of another column. Normally, you’d do something like this from a migration: change_table(:users) do |t| t.string :im_handl