view db/migrate/20130215111127_add_issues_closed_on.rb @ 1484:51364c0cd58f redmine-2.4-integration

Merge from live branch. Still need to merge manually in files overridden by plugins.
author Chris Cannam
date Wed, 15 Jan 2014 09:59:14 +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