@bash-app/bash-common 18.4.0 → 19.0.0
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
|
@@ -827,6 +827,7 @@ model Service {
|
|
|
827
827
|
id String @id @default(cuid())
|
|
828
828
|
ownerId String
|
|
829
829
|
owner User @relation(fields: [ownerId], references: [id], onDelete: Cascade)
|
|
830
|
+
serviceId String?
|
|
830
831
|
email String
|
|
831
832
|
streetAddress String
|
|
832
833
|
city String
|
|
@@ -834,7 +835,7 @@ model Service {
|
|
|
834
835
|
postalCode String
|
|
835
836
|
country String
|
|
836
837
|
phone String
|
|
837
|
-
|
|
838
|
+
name String
|
|
838
839
|
coverPhoto String?
|
|
839
840
|
agreedToAgreement Boolean?
|
|
840
841
|
media Media[]
|