Merge branch 'develop' of https://git.pleroma.social/pleroma/pleroma into develop
[akkoma] / priv / repo / migrations / 20180327175831_actually_drop_local_index.exs
1 defmodule Pleroma.Repo.Migrations.ActuallyDropLocalIndex do
2 use Ecto.Migration
3
4 def change do
5 create_if_not_exists index(:users, [:local])
6 drop_if_exists index("activities", :local)
7 end
8 end