db60640c5b
Co-authored-by: FloatingGhost <hannah@coffee-and-dreams.uk> Reviewed-on: https://akkoma.dev/AkkomaGang/akkoma/pulls/327
7 lines
159 B
Elixir
7 lines
159 B
Elixir
defmodule Pleroma.Repo.Migrations.AddBookmarksActivityIdIndex do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create(index(:bookmarks, [:activity_id]))
|
|
end
|
|
end
|