2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2014-05-14 16:37:19 +02:00
|
|
|
class RemoveRatingDescFromCfp < ActiveRecord::Migration
|
|
|
|
|
def up
|
|
|
|
|
remove_column :call_for_papers, :rating_desc
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def down
|
|
|
|
|
add_column :call_for_papers, :rating_desc, :text
|
|
|
|
|
end
|
|
|
|
|
end
|