refactor: split prisma schemas

This commit is contained in:
DecDuck
2024-11-16 16:24:23 +11:00
parent 2c21a235b2
commit 9011cf5c83
6 changed files with 163 additions and 167 deletions

10
prisma/schema/app.prisma Normal file
View File

@ -0,0 +1,10 @@
model ApplicationSettings {
timestamp DateTime @id @default(now())
enabledAuthencationMechanisms AuthMec[]
}
enum Platform {
Windows @map("windows")
Linux @map("linux")
}