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