From 22b058a33d40f0bdf1052fcc542b75f67f738fc6 Mon Sep 17 00:00:00 2001 From: Frank Date: Tue, 6 Jan 2026 19:40:36 -0500 Subject: wip: black --- packages/console/core/src/schema/billing.sql.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'packages/console/core/src/schema/billing.sql.ts') diff --git a/packages/console/core/src/schema/billing.sql.ts b/packages/console/core/src/schema/billing.sql.ts index 17cdd871d..52de18f64 100644 --- a/packages/console/core/src/schema/billing.sql.ts +++ b/packages/console/core/src/schema/billing.sql.ts @@ -1,4 +1,4 @@ -import { bigint, boolean, index, int, mysqlTable, uniqueIndex, varchar } from "drizzle-orm/mysql-core" +import { bigint, boolean, index, int, json, mysqlTable, uniqueIndex, varchar } from "drizzle-orm/mysql-core" import { timestamps, ulid, utc, workspaceColumns } from "../drizzle/types" import { workspaceIndexes } from "./workspace.sql" @@ -21,6 +21,7 @@ export const BillingTable = mysqlTable( reloadError: varchar("reload_error", { length: 255 }), timeReloadError: utc("time_reload_error"), timeReloadLockedTill: utc("time_reload_locked_till"), + subscriptionID: varchar("subscription_id", { length: 28 }), }, (table) => [...workspaceIndexes(table), uniqueIndex("global_customer_id").on(table.customerID)], ) @@ -54,6 +55,9 @@ export const UsageTable = mysqlTable( cacheWrite1hTokens: int("cache_write_1h_tokens"), cost: bigint("cost", { mode: "number" }).notNull(), keyID: ulid("key_id"), + enrichment: json("data").$type<{ + plan: "sub" + }>(), }, (table) => [...workspaceIndexes(table), index("usage_time_created").on(table.workspaceID, table.timeCreated)], ) -- cgit v1.2.3