Files
quicklanch-server/prisma/schema/profile.schema.prisma
T

14 lines
350 B
Plaintext
Raw Normal View History

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?
2026-04-12 22:47:56 +06:00
2026-04-02 21:27:09 +06:00
}