mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-18 22:21:11 +00:00
11 lines
226 B
Ruby
11 lines
226 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|