Merge pull request #247 from gopesht/add_splash_dashboard

Adds Splash Checkbox in Conference Settings
This commit is contained in:
James Mason 2014-06-19 10:08:22 -07:00
commit 47777dbb4c
11 changed files with 55 additions and 16 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|