@bash-app/bash-common 25.2.0 → 25.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/prisma/schema.prisma +3 -2
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -888,8 +888,9 @@ model Business {
|
|
|
888
888
|
id String @id @default(cuid())
|
|
889
889
|
ownerId String
|
|
890
890
|
owner User @relation(fields: [ownerId], references: [id], onDelete: Cascade)
|
|
891
|
-
stripeServiceCustomerId String? @unique
|
|
892
|
-
stripeBusinessId String
|
|
891
|
+
// stripeServiceCustomerId String? @unique
|
|
892
|
+
stripeBusinessId String @unique
|
|
893
|
+
businessType String @default("Individual")
|
|
893
894
|
dateCreated DateTime @default(now())
|
|
894
895
|
email String
|
|
895
896
|
street String
|