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

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