mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-16 01:31:19 +10:00
12 lines
263 B
Plaintext
12 lines
263 B
Plaintext
model User {
|
|
id String @id @default(uuid())
|
|
username String @unique
|
|
admin Boolean @default(false)
|
|
|
|
email String
|
|
displayName String
|
|
profilePicture String // Object
|
|
|
|
authMecs LinkedAuthMec[]
|
|
clients Client[]
|
|
} |