fix: index related anime lookup

This commit is contained in:
2026-06-16 01:28:49 +02:00
committed by Milas Holsting
parent c9bdc4a75e
commit 71ab6a3abd

View File

@@ -0,0 +1,6 @@
-- +goose Up
CREATE INDEX IF NOT EXISTS idx_anime_relation_related_anime_id
ON anime_relation(related_anime_id);
-- +goose Down
DROP INDEX IF EXISTS idx_anime_relation_related_anime_id;