fix: prisma migrations in docker

i hate prisma so so so so so much
This commit is contained in:
DecDuck
2025-04-20 18:12:29 +10:00
parent ec6d38d7af
commit 0a270b267c
12 changed files with 49 additions and 50 deletions

16
prisma/app.prisma Normal file
View File

@ -0,0 +1,16 @@
model ApplicationSettings {
timestamp DateTime @id @default(now())
enabledAuthencationMechanisms AuthMec[]
metadataProviders String[]
saveSlotCountLimit Int @default(5)
saveSlotSizeLimit Float @default(10) // MB
saveSlotHistoryLimit Int @default(3)
}
enum Platform {
Windows @map("windows")
Linux @map("linux")
macOS @map("macos")
}