Splaspage: Add highlights. Fix cfp inclusion.

This commit is contained in:
Stella Rouzi 2014-11-27 20:40:26 +02:00
parent e9456be31a
commit ed8a71e554
13 changed files with 61 additions and 24 deletions

View file

@ -0,0 +1,5 @@
class AddIsHighlightInEvents < ActiveRecord::Migration
def change
add_column :events, :is_highlight, :boolean, default: false
end
end

View file

@ -0,0 +1,5 @@
class RemoveColumnIncludeCfpInSplashFromCfp < ActiveRecord::Migration
def change
remove_column :call_for_papers, :include_cfp_in_splash, :boolean, default: false
end
end

View file

@ -0,0 +1,5 @@
class AddIncludeCfpInSplashpages < ActiveRecord::Migration
def change
add_column :splashpages, :include_cfp, :boolean, default: false
end
end