zen: refund

This commit is contained in:
Frank
2025-09-23 17:58:26 -04:00
parent c3b2c27997
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)],
)