Skip to content

Commit e983add

Browse files
genuclaude
andcommitted
chore(tests): add missing schema.zmodel for ext-result tests
Add the source .zmodel file so the generated schema.ts can be regenerated, matching the convention used by sibling test directories. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 83ef2c5 commit e983add

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
datasource db {
2+
provider = "sqlite"
3+
}
4+
5+
model User {
6+
id Int @id @default(autoincrement())
7+
name String
8+
posts Post[]
9+
}
10+
11+
model Post {
12+
id Int @id @default(autoincrement())
13+
title String
14+
content String?
15+
author User @relation(fields: [authorId], references: [id])
16+
authorId Int
17+
}

0 commit comments

Comments
 (0)