Fix migration.

This commit is contained in:
lain 2018-03-27 19:59:54 +02:00
parent b56bb88c02
commit 0abd8a6bad
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
defmodule Pleroma.Repo.Migrations.ActuallyDropLocalIndex do
use Ecto.Migration
def change do
create index(:users, [:local])
drop_if_exists index("activities", :local)
end
end