mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2025-04-04 17:49:36 +00:00
Migrations: Add activities_actor_type index
This commit is contained in:
parent
f25ef1aa7f
commit
bee8b64fa7
2 changed files with 8 additions and 0 deletions
1
changelog.d/activity_type_index.change
Normal file
1
changelog.d/activity_type_index.change
Normal file
|
@ -0,0 +1 @@
|
|||
Add new activity actor/type index. Greatly speeds up retrieval of rare types (like "Listen")
|
|
@ -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
|
Loading…
Reference in a new issue