Add missing foreign key indexes

This commit is contained in:
Mark Felder 2024-05-29 21:27:35 -04:00
parent b5fcb82bff
commit c20ac6d1ad

View file

@ -0,0 +1,20 @@
defmodule Pleroma.Repo.Migrations.AddMissingForeignKeys do
use Ecto.Migration
def change do
create_if_not_exists(index(:announcement_read_relationships, :announcement_id))
create_if_not_exists(index(:bookmarks, :activity_id))
create_if_not_exists(index(:bookmarks, :folder_id))
create_if_not_exists(index(:chats, :recipient))
create_if_not_exists(index(:mfa_tokens, :authorization_id))
create_if_not_exists(index(:mfa_tokens, :user_id))
create_if_not_exists(index(:notifications, :activity_id))
create_if_not_exists(index(:oauth_authorizations, :app_id))
create_if_not_exists(index(:oauth_authorizations, :user_id))
create_if_not_exists(index(:password_reset_tokens, :user_id))
create_if_not_exists(index(:push_subscriptions, :token_id))
create_if_not_exists(index(:report_notes, :activity_id))
create_if_not_exists(index(:report_notes, :user_id))
create_if_not_exists(index(:user_notes, :target_id))
end
end