Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

20091017213027_add_missing_indexes_to_comments.rb 312B

1234567891011
  1. class AddMissingIndexesToComments < ActiveRecord::Migration
  2. def self.up
  3. add_index :comments, [:commented_id, :commented_type]
  4. add_index :comments, :author_id
  5. end
  6. def self.down
  7. remove_index :comments, :column => [:commented_id, :commented_type]
  8. remove_index :comments, :author_id
  9. end
  10. end