summaryrefslogtreecommitdiffstats
path: root/db/migrate/20161001122012_add_tracker_id_index_to_workflows.rb
blob: 60c62a6f8463b63f5bd57fe030a570f5e6c48087 (plain)
1
2
3
4
5
6
7
8
9
class AddTrackerIdIndexToWorkflows < ActiveRecord::Migration[4.2]
  def self.up
    add_index :workflows, :tracker_id
  end

  def self.down
    remove_index :workflows, :tracker_id
  end
end