view db/migrate/20131210180802_add_custom_fields_description.rb @ 1563:171c31a5cca4 live

A script to flatten an Hg repo with subrepos into one without. Not currently used.
author Chris Cannam
date Wed, 20 Jan 2016 15:03:23 +0000
parents dffacf8a6908
children
line wrap: on
line source
class AddCustomFieldsDescription < ActiveRecord::Migration
  def up
    add_column :custom_fields, :description, :text
  end

  def down
    remove_column :custom_fields, :description
  end
end