1 2 3 4 5 6 7 8 9
class AddMissingIndexesToDocuments < ActiveRecord::Migration def self.up add_index :documents, :category_id end def self.down remove_index :documents, :category_id end end