Splaspage: Add highlights. Fix cfp inclusion.
This commit is contained in:
parent
e9456be31a
commit
ed8a71e554
13 changed files with 61 additions and 24 deletions
5
db/migrate/20141127161313_add_is_highlight_in_events.rb
Normal file
5
db/migrate/20141127161313_add_is_highlight_in_events.rb
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
class AddIsHighlightInEvents < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :events, :is_highlight, :boolean, default: false
|
||||
end
|
||||
end
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
class RemoveColumnIncludeCfpInSplashFromCfp < ActiveRecord::Migration
|
||||
def change
|
||||
remove_column :call_for_papers, :include_cfp_in_splash, :boolean, default: false
|
||||
end
|
||||
end
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
class AddIncludeCfpInSplashpages < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :splashpages, :include_cfp, :boolean, default: false
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue