From 0abd8a6bad9d769e95f4c636cd837f83e407f8e8 Mon Sep 17 00:00:00 2001 From: lain Date: Tue, 27 Mar 2018 19:59:54 +0200 Subject: [PATCH] Fix migration. --- .../20180327175831_actually_drop_local_index.exs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 priv/repo/migrations/20180327175831_actually_drop_local_index.exs 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