From dd5ec26c8c09b6374e379ad523e9953ce75a4417 Mon Sep 17 00:00:00 2001 From: Frank Date: Thu, 8 Jan 2026 23:44:11 -0500 Subject: wip: black --- packages/console/core/src/schema/billing.sql.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'packages/console/core/src/schema') diff --git a/packages/console/core/src/schema/billing.sql.ts b/packages/console/core/src/schema/billing.sql.ts index f56cf4182..6c2cfcf96 100644 --- a/packages/console/core/src/schema/billing.sql.ts +++ b/packages/console/core/src/schema/billing.sql.ts @@ -22,6 +22,7 @@ export const BillingTable = mysqlTable( timeReloadError: utc("time_reload_error"), timeReloadLockedTill: utc("time_reload_locked_till"), subscriptionID: varchar("subscription_id", { length: 28 }), + subscriptionCouponID: varchar("subscription_coupon_id", { length: 28 }), }, (table) => [ ...workspaceIndexes(table), @@ -54,6 +55,15 @@ export const PaymentTable = mysqlTable( paymentID: varchar("payment_id", { length: 255 }), amount: bigint("amount", { mode: "number" }).notNull(), timeRefunded: utc("time_refunded"), + enrichment: json("enrichment").$type< + | { + type: "subscription" + couponID?: string + } + | { + type: "credit" + } + >(), }, (table) => [...workspaceIndexes(table)], ) -- cgit v1.2.3