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: 1326118cc8dacec0e9a47b641e86b48978a81036 (plain)
1
2
3
4
5
6
7
class AddClosedAtToIssues < ActiveRecord::Migration
  DOWNTIME = false

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