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

View file

@ -94,6 +94,7 @@ ActiveRecord::Schema.define(version: 20140618062623) do
t.boolean "include_tickets_in_splash", default: false
t.boolean "include_social_media_in_splash", default: false
t.boolean "include_program_in_splash", default: false
t.boolean "make_conference_public", default: false
end
create_table "conferences_questions", id: false, force: true do |t|