mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-12-12 13:56:53 +00:00
8 lines
166 B
Elixir
8 lines
166 B
Elixir
|
defmodule Pleroma.Repo.Migrations.AddNotificationActivityIdIndex do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create(index(:notifications, [:activity_id]))
|
||
|
end
|
||
|
end
|