1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-11-17 18:49:15 +00:00

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

View file

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