From 10c475603baa03f5b805d0a074d60ecaeb695181 Mon Sep 17 00:00:00 2001 From: bholmesdev Date: Fri, 2 Feb 2024 17:09:04 -0500 Subject: [PATCH] fix: include primaryKey in types --- packages/db/src/core/integration/typegen.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/db/src/core/integration/typegen.ts b/packages/db/src/core/integration/typegen.ts index 2ab1a3c497..5beb2c8cf5 100644 --- a/packages/db/src/core/integration/typegen.ts +++ b/packages/db/src/core/integration/typegen.ts @@ -34,6 +34,7 @@ function generateTableType(name: string, collection: DBCollection): string { type: field.type, optional: field.optional, default: field.default, + primaryKey: 'primaryKey' in field ? field.primaryKey : false, }, ]) )