summaryrefslogtreecommitdiffstats
path: root/db/migrate/20131124175346_add_custom_fields_format_store.rb
blob: 47c7b313aea264bb4729d797041c9a912a6396e7 (plain)
1
2
3
4
5
6
7
8
9
class AddCustomFieldsFormatStore < ActiveRecord::Migration
  def up
    add_column :custom_fields, :format_store, :text
  end

  def down
    remove_column :custom_fields, :format_store
  end
end