Speed up follower query.

This commit is contained in:
lain 2018-03-26 10:31:22 +02:00
commit bd4926288e
2 changed files with 2 additions and 1 deletions

View file

@ -4,5 +4,6 @@ defmodule Pleroma.Repo.Migrations.AddFollowerAddressIndexToUsers do
@disable_ddl_transaction true
def change do
create index(:users, [:follower_address], concurrently: true)
create index(:users, [:following], concurrently: true, using: :gin)
end
end