Redmine/db/migrate/20131124175346_add_custom_f...

10 lines
196 B
Ruby

class AddCustomFieldsFormatStore < ActiveRecord::Migration
def up
add_column :custom_fields, :format_store, :text
end
def down
remove_column :custom_fields, :format_store
end
end