mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
* 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
5 lines
136 B
Ruby
5 lines
136 B
Ruby
class RemovePublicFromRoom < ActiveRecord::Migration
|
|
def change
|
|
remove_column :rooms, :public, :boolean, default: false
|
|
end
|
|
end
|