mirror of
https://github.com/redmine/redmine.git
synced 2025-11-02 11:25:55 +01:00
12 lines
271 B
Ruby
12 lines
271 B
Ruby
|
|
class AddMissingIndexesToChangesets < ActiveRecord::Migration
|
||
|
|
def self.up
|
||
|
|
add_index :changesets, :user_id
|
||
|
|
add_index :changesets, :repository_id
|
||
|
|
end
|
||
|
|
|
||
|
|
def self.down
|
||
|
|
remove_index :changesets, :user_id
|
||
|
|
remove_index :changesets, :repository_id
|
||
|
|
end
|
||
|
|
end
|