BigW Consortium Gitlab

20160314094147_add_priority_to_label.rb 173 Bytes
Newer Older
1
# rubocop:disable all
Thijs Wouters committed
2 3 4 5 6 7
class AddPriorityToLabel < ActiveRecord::Migration
  def change
    add_column :labels, :priority, :integer
    add_index :labels, :priority
  end
end