fix: add Notebook.notes relation to MCP schema
Some checks failed
Deploy to Production / Build and Deploy (push) Failing after 6s

Tools query _count.notes on Notebook which requires the notes relation.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-04-26 14:58:26 +02:00
parent bc3577a388
commit 3951b12d2e

View File

@@ -64,6 +64,7 @@ model Notebook {
userId String
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
notes Note[]
labels Label[]
}