diff --git a/priv/repo/migrations/20180327175831_actually_drop_local_index.exs b/priv/repo/migrations/20180327175831_actually_drop_local_index.exs new file mode 100644 index 000000000..2da65689c --- /dev/null +++ b/priv/repo/migrations/20180327175831_actually_drop_local_index.exs @@ -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