1
0
espelhamento de https://github.com/redmine/redmine.git sincronizado 2024-07-27 20:19:39 +02:00
redmine/db/migrate/20131124175346_add_custom_fields_format_store.rb

10 linhas
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