about summary refs log tree commit diff
path: root/db/migrate/20180617162849_remove_unused_indexes.rb
blob: 61add63855946528ca42e38fe5f65b6d389af204 (plain) (blame)
1
2
3
4
5
6
7
class RemoveUnusedIndexes < ActiveRecord::Migration[5.2]
  def change
    remove_index :statuses, name: "index_statuses_on_conversation_id"
    remove_index :users, name: "index_users_on_filtered_languages"
    remove_index :backups, name: "index_backups_on_user_id"
  end
end