Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20170315194013_add_closed_at_to_issues.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 34a1bd7ca8c86a333ff9a49d3a832f7789bd2a81 (plain)
1
2
3
4
5
6
7
8
# rubocop:disable Migration/Datetime
class AddClosedAtToIssues < ActiveRecord::Migration
  DOWNTIME = false

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