mirror of
https://git.pleroma.social/sjw/pleroma.git
synced 2025-01-07 23:55:31 +01:00
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
|