update
Some checks failed
/ build (push) Failing after 4m39s

This commit is contained in:
Jorge Vargas 2025-03-15 11:17:33 -06:00
parent 2575d45f0b
commit 0ec019f959
16 changed files with 209 additions and 34 deletions

View file

@ -0,0 +1,2 @@
-- CreateIndex
CREATE FULLTEXT INDEX `albums_title_subTitle_idx` ON `albums`(`title`, `subTitle`);

View file

@ -153,6 +153,8 @@ model albums {
relatedAlbums related_album[] @relation("related_album_albumIdToalbums")
relatedTo related_album[] @relation("related_album_relatedIdToalbums")
stores stores[]
@@fulltext([title, subTitle])
}
model animation {