You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
educoder/db/migrate/20190505031946_sync_users_i...

9 lines
318 B

class SyncUsersIndex < ActiveRecord::Migration[5.2]
def change
remove_index :users, name: :index_users_on_phone_and_mail
remove_index :users, name: :index_users_on_id_and_type
remove_index :users, name: :index_users_on_auth_source_id
remove_index :users, name: :index_users_on_type
end
end