20241014010506_remove_duplicate_indexes.rb 332 B

12345678910
  1. # frozen_string_literal: true
  2. class RemoveDuplicateIndexes < ActiveRecord::Migration[7.1]
  3. def change
  4. remove_index :account_aliases, :account_id
  5. remove_index :account_relationship_severance_events, :account_id
  6. remove_index :custom_filter_statuses, :status_id
  7. remove_index :webauthn_credentials, :user_id
  8. end
  9. end