akkoma/priv/repo/migrations/20221129105331_add_notifica...

8 lines
166 B
Elixir

defmodule Pleroma.Repo.Migrations.AddNotificationActivityIdIndex do
use Ecto.Migration
def change do
create(index(:notifications, [:activity_id]))
end
end