Modify sort index for activities.

This prevents a problem that made the local timeline very slow when
there were few posts.
This commit is contained in:
lain 2018-05-13 12:54:08 +02:00
parent c7a85de35c
commit 94c1f28ba4
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
defmodule Pleroma.Repo.Migrations.ModifyActivityIndex do
use Ecto.Migration
@disable_ddl_transaction true
def change do
create index(:activities, ["id desc nulls last", "local"], concurrently: true)
drop_if_exists index(:activities, ["id desc nulls last"])
end
end