3f0ead4265
- Enhanced account management with new validation and Swagger documentation. - Updated Prisma schemas and migrations for the account and profile. - Improved email handling mechanisms in the email queue system with new worker functionality. - Adjusted Docker configurations and package dependencies for better integration.
13 lines
349 B
Plaintext
13 lines
349 B
Plaintext
model Profile {
|
|
id String @id @default(uuid())
|
|
accountId String @unique
|
|
account Account @relation(fields: [accountId], references: [id], onDelete: Cascade)
|
|
|
|
shopName String
|
|
shopLogo String?
|
|
contactNumber String?
|
|
shopAddress String?
|
|
shopMapLocation String?
|
|
shopCategory String?
|
|
}
|