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