view db/migrate/20130215111127_add_issues_closed_on.rb @ 1556:81dd71991dc1 feature_1136

hg-hash option does not appear reliable ("Not updating refs/notes/hg (new tip XXX does not contain YYY")
author Chris Cannam
date Wed, 13 Jan 2016 13:33:03 +0000
parents 261b3d9a4903
children
line wrap: on
line source
class AddIssuesClosedOn < ActiveRecord::Migration
  def up
    add_column :issues, :closed_on, :datetime, :default => nil
  end

  def down
    remove_column :issues, :closed_on
  end
end