fix npm run build
This commit is contained in:
parent
80dd2e5710
commit
6f4870f09e
1 changed files with 7 additions and 2 deletions
|
|
@ -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(),
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue