Drop index for 'local', it confuses the query planner.

This commit is contained in:
lain 2018-03-27 19:48:01 +02:00
parent 37e5014d3e
commit b56bb88c02
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
defmodule Pleroma.Repo.Migrations.DropLocalIndexOnActivities do
use Ecto.Migration
def change do
drop index(:users, [:local])
end
end