blob: 7556336eda1fbcc5725bd25476b8c33dedbc0a10 (
plain)
1
2
3
4
5
6
7
8
|
defmodule Pleroma.Repo.Migrations.ActuallyDropLocalIndex do
use Ecto.Migration
def change do
create_if_not_exists index(:users, [:local])
drop_if_exists index("activities", :local)
end
end
|