Merge pull request #515 from ChrisBr/rooms

Refactoring admin room menu
This commit is contained in:
Christian Bruckmayer 2014-11-12 12:01:10 +01:00
commit 56747fc118
11 changed files with 135 additions and 52 deletions

View file

@ -0,0 +1,5 @@
class SetRoomPublicDefaultToFalse < ActiveRecord::Migration
def change
change_column :rooms, :public, :boolean, default: false
end
end