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
+10
View File
@@ -0,0 +1,10 @@
model ApplicationSettings {
timestamp DateTime @id @default(now())
enabledAuthencationMechanisms AuthMec[]
}
enum Platform {
Windows @map("windows")
Linux @map("linux")
}