Redmine/db/migrate/20131210180802_add_custom_f...

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