summaryrefslogtreecommitdiff
path: root/db/migrate/20160310124959_add_due_date_to_issues.rb
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