1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-03-02 22:41:42 -05:00
tootlab-mastodon/db/migrate/20241014010506_remove_duplicate_indexes.rb

11 lines
332 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class RemoveDuplicateIndexes < ActiveRecord::Migration[7.1]
def change
remove_index :account_aliases, :account_id
remove_index :account_relationship_severance_events, :account_id
remove_index :custom_filter_statuses, :status_id
remove_index :webauthn_credentials, :user_id
end
end