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
|