mirror of
https://github.com/redmine/redmine.git
synced 2025-11-03 11:56:18 +01:00
12 lines
262 B
Ruby
12 lines
262 B
Ruby
|
|
class AddMissingIndexesToWikiPages < ActiveRecord::Migration
|
||
|
|
def self.up
|
||
|
|
add_index :wiki_pages, :wiki_id
|
||
|
|
add_index :wiki_pages, :parent_id
|
||
|
|
end
|
||
|
|
|
||
|
|
def self.down
|
||
|
|
remove_index :wiki_pages, :wiki_id
|
||
|
|
remove_index :wiki_pages, :parent_id
|
||
|
|
end
|
||
|
|
end
|