In an already-deployed application, in my seeds.rb, I have the following:
State.create!(:state => "Alabama")
State.create!(:state => "Delaware")
...
Now I wanted to add the two-letter code for each state.
So I made a migration like this:
class AddStateCodeToStates < ActiveRecord::Migration
def self.up
add_column :states, :state_code, :string
update(<<-SQL
UPDATE states SET state_code='WA' where state = 'Washington'
SQL
)
...lots of these SQL statement...
end
def self.down
end
end
Problem is:
In development environment, when I want to recreate the database from scratch, then after the migrations run, at that point the seeds.rb has not yet been run.
So, the UPDATE xxx in the AddStateCodeToStates migration has no data to work with (states table is empty because the data will be populated from the seeds.rb), thus the state_code remains NULL.
So my questions are (they are so related, so sorry for not asking them as each separate question):
- How do I populate the
state_codeswhen recreating the database (after thestatestable has data in it)? - How do I get the
state_codeswhenrake db:migrateon the deployed app (seeds.rbdoes not run onrake db:migrate) - Should I not have used
seeds.rbin the first place (and instead put data into the migrations)?