mirror of
https://github.com/redmine/redmine.git
synced 2025-11-12 08:16:03 +01:00
10 lines
214 B
Ruby
10 lines
214 B
Ruby
|
|
class AddStatusDescription < ActiveRecord::Migration[6.1]
|
||
|
|
def up
|
||
|
|
add_column :issue_statuses, :description, :string, :after => :name
|
||
|
|
end
|
||
|
|
|
||
|
|
def down
|
||
|
|
remove_column :issue_statuses, :description
|
||
|
|
end
|
||
|
|
end
|