fix npm run build

This commit is contained in:
Jun-te Kim 2026-01-20 23:16:28 +00:00
parent 80dd2e5710
commit 6f4870f09e

View file

@ -13,6 +13,11 @@ export const xeroConnections = pgTable("xero_connections", {
salesAccountCode: text("sales_account_code"), salesAccountCode: text("sales_account_code"),
stripeClearingAccountCode: text("stripe_clearing_account_code"), stripeClearingAccountCode: text("stripe_clearing_account_code"),
createdAt: timestamp("created_at", { withTimezone: true }).notNull(), createdAt: timestamp("created_at", { withTimezone: true })
updatedAt: timestamp("updated_at", { withTimezone: true }).notNull(), .notNull()
.defaultNow(),
updatedAt: timestamp("updated_at", { withTimezone: true })
.notNull()
.defaultNow(),
}); });