summaryrefslogtreecommitdiff
path: root/db/migrate/20160314094147_add_priority_to_label.rb
blob: 7fb23cba4c90ee8c04b062d05a2475514761e7be (plain)
1
2
3
4
5
6
7
# rubocop:disable all
class AddPriorityToLabel < ActiveRecord::Migration
  def change
    add_column :labels, :priority, :integer
    add_index :labels, :priority
  end
end