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