fix(db): lastRead column was named incorrectly
This commit is contained in:
@@ -16,7 +16,7 @@ export const rfidTags = pgTable(
|
|||||||
rfidTag_id: uuid("rfidTag_id").defaultRandom().primaryKey(),
|
rfidTag_id: uuid("rfidTag_id").defaultRandom().primaryKey(),
|
||||||
tagHex: text("tagHex"),
|
tagHex: text("tagHex"),
|
||||||
tag: text("tag"),
|
tag: text("tag"),
|
||||||
lastRead: timestamp("timeStamp").defaultNow(),
|
lastRead: timestamp("lastRead").defaultNow(), // cahnge this and hope we dont loose the data.
|
||||||
counts: jsonb("counts").default([]), // example [{area: Line3.2, count: 1}, {area: line3.1, count: 6}]
|
counts: jsonb("counts").default([]), // example [{area: Line3.2, count: 1}, {area: line3.1, count: 6}]
|
||||||
lastareaIn: text("lastareaIn").notNull(),
|
lastareaIn: text("lastareaIn").notNull(),
|
||||||
runningNumber: integer("runningNumber"),
|
runningNumber: integer("runningNumber"),
|
||||||
|
|||||||
Reference in New Issue
Block a user