Redmine/db/migrate/20091017213332_add_missing_...

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