refactor: split prisma schemas

This commit is contained in:
DecDuck
2024-11-16 16:24:23 +11:00
parent 7685db03a2
commit 3731b3fcf4
6 changed files with 163 additions and 167 deletions
+12
View File
@@ -0,0 +1,12 @@
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[]
}