summaryrefslogtreecommitdiff
path: root/db/migrate/20170315194013_add_closed_at_to_issues.rb
blob: 0b06ee6e74ccd83e4cf0603d0aacbe9113a88ed3 (plain)
1
2
3
4
5
6
7
8
# rubocop:disable Migration/Datetime
class AddClosedAtToIssues < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  def change
    add_column :issues, :closed_at, :datetime
  end
end