Removes column hard_deadline from call for papers

This commit is contained in:
Chrisbr 2014-06-04 16:47:50 +02:00
parent 25a1c116fd
commit c75471c0e4
7 changed files with 13 additions and 17 deletions

View file

@ -0,0 +1,9 @@
class RemoveHardDeadlineFromCallForPapers < ActiveRecord::Migration
def up
remove_column :call_for_papers, :hard_deadline
end
def down
add_column :call_for_papers, :hard_deadline, :date
end
end