Files
fetsite/db/migrate/20130823084252_add_object_to_calentries.rb
Andreas Stephanides de4c84871c Add object to calentries
2013-08-23 13:39:54 +02:00

15 lines
403 B
Ruby

class AddObjectToCalentries < ActiveRecord::Migration
def up
add_column :calentries,:object_id, :integer
add_column :calentries,:object_type, :string
add_column :calentries, :public, :boolean
Calentry.update_all(:public => :true)
end
def down
remove_column :calentries, :object_id
remove_column :calentries,:object_type
remove_column :calentries,:public
end
end