mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-19 22:26:05 +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
|