mirror of
https://git.rape.pet/ulith/amputoma.git
synced 2025-02-25 14:14:00 +01:00
8 lines
190 B
Elixir
8 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
|