選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

20091017213228_add_missing_indexes_to_watchers.rb 313B

1234567891011
  1. class AddMissingIndexesToWatchers < ActiveRecord::Migration[4.2]
  2. def self.up
  3. add_index :watchers, :user_id
  4. add_index :watchers, [:watchable_id, :watchable_type]
  5. end
  6. def self.down
  7. remove_index :watchers, :user_id
  8. remove_index :watchers, :column => [:watchable_id, :watchable_type]
  9. end
  10. end