????

Your IP : 3.12.149.233


Current Path : C:/inetpub/vhost/redmine/db/migrate/
Upload File :
Current File : C:/inetpub/vhost/redmine/db/migrate/20091017213228_add_missing_indexes_to_watchers.rb

class AddMissingIndexesToWatchers < ActiveRecord::Migration[4.2]
  def self.up
    add_index :watchers, :user_id
    add_index :watchers, [:watchable_id, :watchable_type]
  end

  def self.down
    remove_index :watchers, :user_id
    remove_index :watchers, :column => [:watchable_id, :watchable_type]
  end
end