fix: refactor prisma multifolder into docs example

This commit is contained in:
DecDuck
2025-05-08 16:25:01 +10:00
parent 867772d7ec
commit b90683e973
8 changed files with 1 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
model ApplicationSettings {
timestamp DateTime @id @default(now())
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")
}