feat(import): overhauled version importing

This commit is contained in:
DecDuck
2024-12-31 00:04:50 +11:00
parent 02d6346b01
commit 39d7ce7d1b
9 changed files with 631 additions and 181 deletions

View File

@ -0,0 +1,6 @@
-- AlterTable
ALTER TABLE "GameVersion" ADD COLUMN "launchArgs" TEXT[],
ADD COLUMN "onlySetup" BOOLEAN NOT NULL DEFAULT false,
ADD COLUMN "setupArgs" TEXT[],
ALTER COLUMN "launchCommand" DROP NOT NULL,
ALTER COLUMN "setupCommand" DROP NOT NULL;