mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-16 21:24:05 +00:00
9 lines
195 B
Ruby
9 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
|