refactor(ocp): added default time in for each printer to allow different delays

This commit is contained in:
2025-04-06 07:46:47 -05:00
parent 525de7dab2
commit 85e3d46b2e

View File

@@ -24,7 +24,7 @@ export const printerData = pgTable(
lastTimePrinted: timestamp("lastTimePrinted").notNull().defaultNow(),
assigned: boolean("assigned").default(false),
remark: text("remark"),
printDelay: numeric("printDelay"),
printDelay: numeric("printDelay").default("90"),
monitorState: boolean("monitorState").default(false),
add_Date: timestamp("add_Date").defaultNow(),
upd_date: timestamp("upd_date").defaultNow(),