I commonly need to perform migrations like so:
class AddNewFieldToMember < ActiveRecord::Migration
def self.up
add_column :members, :new_field, :string, :default => 'instant'
# Set existing records
Member.reset_column_information
Member.all.each do |member|
member.new_field = 'instant'
member.save
end
end
def self.down
remove_column :members, :new_field
end
end
This specific Member table has about 10,000 records. When we run migrations like this one everything dies. The migration takes at least 5 minutes. Rails is not responsive, the postgresql is also not responsive.
Why is that? What can be done to avoid this kind of migration downtime? Is there a better way to add migrations and update existing records?
Thanks
Model.all, think again. You're almost certainly making a mistake, that method shouldn't even be part of the API, you should have to work harder than calling a single method to make a mistake like that. – mu is too short Feb 2 '12 at 4:20