osem-fcy/db/migrate/20141120205757_remove_public_from_room.rb
Henne Vogelsang 28063129c7 Implement consistent admin interface
* Consistent route/model/controller/view layout
* Get rid of unused photos, speakers, dietchoices, social_events controllers
* Drop unused :public from Rooms and :description from CallForPapers
2014-11-25 10:47:18 +01:00

5 lines
136 B
Ruby

class RemovePublicFromRoom < ActiveRecord::Migration
def change
remove_column :rooms, :public, :boolean, default: false
end
end