@bash-app/bash-common 27.2.10 → 27.2.11
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 +2 -1
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -17,7 +17,7 @@ model Club {
|
|
|
17
17
|
street String
|
|
18
18
|
userId String
|
|
19
19
|
price Int?
|
|
20
|
-
events BashEvent[]
|
|
20
|
+
events BashEvent[]
|
|
21
21
|
members ClubMember[]
|
|
22
22
|
admin ClubAdmin[]
|
|
23
23
|
}
|
|
@@ -900,6 +900,7 @@ model Service {
|
|
|
900
900
|
// stripeServiceCustomerId String? @unique
|
|
901
901
|
stripeBusinessId String @unique
|
|
902
902
|
// stripeBusinessType String @default("Individual")
|
|
903
|
+
serviceType ServiceTypes
|
|
903
904
|
creatorId String
|
|
904
905
|
creator User @relation("CreatedService", fields: [creatorId], references: [id], onDelete: Cascade)
|
|
905
906
|
dateCreated DateTime @default(now())
|