10 lines
189 B
Ruby
10 lines
189 B
Ruby
|
class AddMissingIndexesToDocuments < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
add_index :documents, :category_id
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
remove_index :documents, :category_id
|
||
|
end
|
||
|
end
|