Implement search page

This commit is contained in:
Jorge Vargas 2025-03-15 11:17:33 -06:00
parent 5294748076
commit 301854d8da
12 changed files with 180 additions and 17 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 {