blob: a4e7e95dc63435a2fdba2d92266ff4865092c387 (
plain)
1
2
3
4
5
6
7
8
9
|
class AddMissingIndexesToDocuments < ActiveRecord::Migration[4.2]
def self.up
add_index :documents, :category_id
end
def self.down
remove_index :documents, :category_id
end
end
|