I just want to make sure if this is possible:
class AddUpdatedById < ActiveRecord::Migration
def change
add_column :clients, :updated_by_id, :integer
add_column :contacts, :updated_by_id, :integer
add_column :court_agencies, :updated_by_id, :integer
end
end
This way I will save migrations. Because if I will migrate them one by one, I think it will take more time and mess up my migrations. So, what do you think?
Is it possible or I should I do the same thing one by one?
Yes you can, it will be a group migration.you can also do something like this to write less code if you want to change many tables.
if you decided to rollback this migration it will remove the columns without any problems.