zen: refund

This commit is contained in:
Frank 2025-09-23 17:58:26 -04:00
commit edd6198999
8 changed files with 733 additions and 6 deletions

View file

@ -30,6 +30,7 @@ export const PaymentTable = mysqlTable(
customerID: varchar("customer_id", { length: 255 }),
paymentID: varchar("payment_id", { length: 255 }),
amount: bigint("amount", { mode: "number" }).notNull(),
timeRefunded: utc("time_refunded"),
},
(table) => [...workspaceIndexes(table)],
)