From 825c8a63fb8f613ef35807a41af2ae21395463e2 Mon Sep 17 00:00:00 2001 From: BennyKok Date: Sat, 6 Jan 2024 00:08:36 +0800 Subject: [PATCH] fix: build --- web/src/db/schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/db/schema.ts b/web/src/db/schema.ts index bb1c65d..694b999 100644 --- a/web/src/db/schema.ts +++ b/web/src/db/schema.ts @@ -202,7 +202,7 @@ export const machinesTable = dbSchema.table("machines", { auth_token: text("auth_token"), type: machinesType("type").notNull().default("classic"), status: machinesStatus("status").notNull().default("ready"), - snapshot: jsonb("snapshot").$type>(), + snapshot: jsonb("snapshot").$type(), build_log: text("build_log"), });