almst complete admin ui and initial store designs

This commit is contained in:
DecDuck
2024-10-11 22:45:02 +11:00
parent 46c8f0c48a
commit 27070b6a4c
21 changed files with 734 additions and 202 deletions

View File

@ -0,0 +1,14 @@
/*
Warnings:
- You are about to drop the column `mArt` on the `Game` table. All the data in the column will be lost.
- You are about to drop the column `mBannerId` on the `Game` table. All the data in the column will be lost.
- You are about to drop the column `mScreenshots` on the `Game` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "Game" DROP COLUMN "mArt",
DROP COLUMN "mBannerId",
DROP COLUMN "mScreenshots",
ADD COLUMN "mBannerIndex" INTEGER NOT NULL DEFAULT 0,
ADD COLUMN "mImageLibrary" TEXT[];