Files

20 lines
494 B
Plaintext
Raw Permalink Normal View History

enum ShopStatus {
ACTIVE
SUSPENDED
DELETED
INACTIVE
}
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)
shopName String
shopLogo String?
contactNumber String?
shopAddress String?
shopMapLocation String?
shopCategory String?
status ShopStatus @default(ACTIVE)
2026-04-02 21:27:09 +06:00
}