Adds make_conference_public field to conference model

This commit is contained in:
Gopesh Tulsyan 2014-06-16 19:04:30 +05:30
parent 0f697f3dbe
commit e1b7067fd9
4 changed files with 10 additions and 1 deletions

View file

@ -0,0 +1,5 @@
class AddMakeConferencePublicToConference < ActiveRecord::Migration
def change
add_column :conferences, :make_conference_public, :boolean, default: false
end
end