9 lines
190 B
Elixir
9 lines
190 B
Elixir
|
defmodule Pleroma.Repo.Migrations.ActuallyDropLocalIndex do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create index(:users, [:local])
|
||
|
drop_if_exists index("activities", :local)
|
||
|
end
|
||
|
end
|