9 lines
231 B
Plaintext
9 lines
231 B
Plaintext
model Profile {
|
|
id String @id @default(uuid())
|
|
accountId String @unique
|
|
account Account @relation(fields: [accountId], references: [id], onDelete: Cascade)
|
|
|
|
fullName String
|
|
profilePhoto String?
|
|
}
|