Refactoring rooms

This commit is contained in:
chrisbr 2014-11-12 11:37:28 +01:00
parent 2c98ba9711
commit 6a373b5f6c
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