mirror of
https://github.com/redmine/redmine.git
synced 2025-11-02 19:36:00 +01:00
10 lines
194 B
Ruby
10 lines
194 B
Ruby
|
|
class AddCustomFieldsDescription < ActiveRecord::Migration
|
||
|
|
def up
|
||
|
|
add_column :custom_fields, :description, :text
|
||
|
|
end
|
||
|
|
|
||
|
|
def down
|
||
|
|
remove_column :custom_fields, :description
|
||
|
|
end
|
||
|
|
end
|