mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2025-01-03 13:49:02 +00:00
8 lines
159 B
Elixir
8 lines
159 B
Elixir
|
defmodule Pleroma.Repo.Migrations.AddBookmarksActivityIdIndex do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create(index(:bookmarks, [:activity_id]))
|
||
|
end
|
||
|
end
|