logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 0abd8a6bad9d769e95f4c636cd837f83e407f8e8
parent b56bb88c02dcbbc16ca3f861df5d5e09828fc56a
Author: lain <lain@soykaf.club>
Date:   Tue, 27 Mar 2018 19:59:54 +0200

Fix migration.

Diffstat:

Apriv/repo/migrations/20180327175831_actually_drop_local_index.exs8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/priv/repo/migrations/20180327175831_actually_drop_local_index.exs 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