Migrations: Add activities_actor_type index

This commit is contained in:
Lain Soykaf 2025-03-14 19:41:46 +04:00
parent f25ef1aa7f
commit bee8b64fa7
2 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1 @@
Add new activity actor/type index. Greatly speeds up retrieval of rare types (like "Listen")

View file

@ -0,0 +1,7 @@
defmodule Pleroma.Repo.Migrations.AddActivitiesActorTypeIndex do
use Ecto.Migration
def change do
create(index(:activities, ["actor", "(data ->> 'type'::text)", "id DESC NULLS LAST"]))
end
end