10 lines
195 B
Ruby
10 lines
195 B
Ruby
|
|
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
|