redmine/db/migrate/20131124175346_add_custom_fields_format_store.rb

10 řádky
201 B
Ruby

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