From: lain Date: Tue, 27 Mar 2018 17:59:54 +0000 (+0200) Subject: Fix migration. X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=0abd8a6bad9d769e95f4c636cd837f83e407f8e8;p=akkoma Fix migration. --- 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