pleroma/priv/repo/migrations/20180327175831_actually_dro...

9 lines
204 B
Elixir
Raw Normal View History

2018-03-27 19:59:54 +02:00
defmodule Pleroma.Repo.Migrations.ActuallyDropLocalIndex do
use Ecto.Migration
def change do
2019-07-01 03:08:07 +02:00
create_if_not_exists index(:users, [:local])
2018-03-27 19:59:54 +02:00
drop_if_exists index("activities", :local)
end
end