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