Files
openfoodnetwork/db/migrate/20120327000566_make_state_events_polymorphic.rb
Andrew Spinks cd1938a74e spree install.
2012-03-27 11:06:49 +11:00

13 lines
374 B
Ruby

class MakeStateEventsPolymorphic < ActiveRecord::Migration
def up
rename_column :state_events, :order_id, :stateful_id
add_column :state_events, :stateful_type, :string
execute "UPDATE state_events SET stateful_type = 'Order'"
end
def down
rename_column :state_events, :stateful_id, :order_id
remove_column :state_events, :stateful_type
end
end