2026-05-24 00:17:16 +06:00
|
|
|
enum ShopStatus {
|
|
|
|
|
ACTIVE
|
|
|
|
|
SUSPENDED
|
|
|
|
|
DELETED
|
|
|
|
|
INACTIVE
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-02 21:27:09 +06:00
|
|
|
model Profile {
|
2026-05-24 00:17:16 +06:00
|
|
|
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-05-24 00:17:16 +06:00
|
|
|
status ShopStatus @default(ACTIVE)
|
2026-04-02 21:27:09 +06:00
|
|
|
}
|