wip: black
This commit is contained in:
parent
cbe1c81470
commit
f96c4badd8
4 changed files with 1322 additions and 1 deletions
|
|
@ -31,7 +31,11 @@ export const BillingTable = mysqlTable(
|
|||
subscriptionPlan: mysqlEnum("subscription_plan", ["20", "100", "200"] as const),
|
||||
timeSubscriptionBooked: utc("time_subscription_booked"),
|
||||
},
|
||||
(table) => [...workspaceIndexes(table), uniqueIndex("global_customer_id").on(table.customerID)],
|
||||
(table) => [
|
||||
...workspaceIndexes(table),
|
||||
uniqueIndex("global_customer_id").on(table.customerID),
|
||||
uniqueIndex("global_subscription_id").on(table.subscriptionID),
|
||||
],
|
||||
)
|
||||
|
||||
export const SubscriptionTable = mysqlTable(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue