mirror of
https://github.com/redmine/redmine.git
synced 2025-11-08 06:15:59 +01:00
12 lines
303 B
Ruby
12 lines
303 B
Ruby
|
|
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
|