forked from AkkomaGang/akkoma
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:
parent
c7a85de35c
commit
94c1f28ba4
1 changed files with 9 additions and 0 deletions
|
@ -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
|
Loading…
Reference in a new issue