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"), });