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.
9 lines
318 B
9 lines
318 B
6 years ago
|
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
|