game version re-ordering

This commit is contained in:
DecDuck
2024-10-14 20:34:23 +11:00
parent 8674ac7211
commit 329c74d3ce
18 changed files with 354 additions and 50 deletions
+3 -1
View File
@@ -91,7 +91,6 @@ model Game {
mCoverId String
mImageLibrary String[] // linked to objects in s3
versionOrder String[]
versions GameVersion[]
libraryBasePath String @unique // Base dir for all the game versions
@@ -109,6 +108,9 @@ model GameVersion {
setupCommand String // Command to setup game (dependencies and such)
dropletManifest Json // Results from droplet
versionIndex Int
delta Boolean @default(false)
@@id([gameId, versionName])
}