summaryrefslogtreecommitdiffstats
path: root/db/migrate/20091017214644_add_missing_indexes_to_issue_relations.rb
blob: fc57f18bfcb3b0d61897b873776dd46871494549 (plain)
1
2
3
4
5
6
7
8
9
10
11
class AddMissingIndexesToIssueRelations < ActiveRecord::Migration
  def self.up
    add_index :issue_relations, :issue_from_id
    add_index :issue_relations, :issue_to_id
  end

  def self.down
    remove_index :issue_relations, :issue_from_id
    remove_index :issue_relations, :issue_to_id
  end
end