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

20160310124959_add_due_date_to_issues.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8da38ea60b15c3d421340ad282c33016ed4ceb20 (plain)
1
2
3
4
5
6
7
# rubocop:disable all
class AddDueDateToIssues < ActiveRecord::Migration[4.2]
  def change
    add_column :issues, :due_date, :date
    add_index :issues, :due_date
  end
end