mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-13 20:41:19 +00: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
|