2026-04-02 21:27:09 +06:00
|
|
|
model Profile {
|
|
|
|
|
id String @id @default(uuid())
|
|
|
|
|
accountId String @unique
|
|
|
|
|
account Account @relation(fields: [accountId], references: [id], onDelete: Cascade)
|
2026-04-03 00:54:46 +06:00
|
|
|
shopName String
|
|
|
|
|
shopLogo String?
|
|
|
|
|
contactNumber String?
|
|
|
|
|
shopAddress String?
|
|
|
|
|
shopMapLocation String?
|
|
|
|
|
shopCategory String?
|
2026-04-02 21:27:09 +06:00
|
|
|
}
|
2026-04-26 18:57:33 +06:00
|
|
|
|
|
|
|
|
|