mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 08:44:27 +00:00
11 lines
332 B
Ruby
11 lines
332 B
Ruby
# 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
|