blob: 29de45f62ce4cf9a18be7aada6490188b87efb76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class AddMissingIndexesToIssueRelations < ActiveRecord::Migration[4.2]
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
|