Adds migrations for checkboxes of splash components
This commit is contained in:
parent
3cf41b51c2
commit
6c5e04f513
7 changed files with 57 additions and 23 deletions
|
|
@ -0,0 +1,10 @@
|
|||
class AddCheckboxesForSplashComponentsToConference < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :conferences, :include_registrations_in_splash, :boolean, default: false
|
||||
add_column :conferences, :include_sponsors_in_splash, :boolean, default: false
|
||||
add_column :conferences, :include_tracks_in_splash, :boolean, default: false
|
||||
add_column :conferences, :include_tickets_in_splash, :boolean, default: false
|
||||
add_column :conferences, :include_social_media_in_splash, :boolean, default: false
|
||||
add_column :conferences, :include_program_in_splash, :boolean, default: false
|
||||
end
|
||||
end
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
class AddIncludeCfpInSplashToCallForPapers < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :call_for_papers, :include_cfp_in_splash, :boolean, default: false
|
||||
end
|
||||
end
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
class AddVenueCheckboxesToVenue < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :venues, :include_venue_in_splash, :boolean, default: false
|
||||
add_column :venues, :include_lodgings_in_splash, :boolean, default: false
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue