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: a4eb6aaee63ed0e1256daba27defc532c449d158 (plain)
1
2
3
4
5
6
7
# rubocop:disable all
class AddDueDateToIssues < ActiveRecord::Migration
  def change
    add_column :issues, :due_date, :date
    add_index :issues, :due_date
  end
end