mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-18 02:31:19 +10:00
almst complete admin ui and initial store designs
This commit is contained in:
@ -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[];
|
||||
@ -0,0 +1,10 @@
|
||||
/*
|
||||
Warnings:
|
||||
|
||||
- You are about to drop the column `mBannerIndex` on the `Game` table. All the data in the column will be lost.
|
||||
- Added the required column `mBannerId` to the `Game` table without a default value. This is not possible if the table is not empty.
|
||||
|
||||
*/
|
||||
-- AlterTable
|
||||
ALTER TABLE "Game" DROP COLUMN "mBannerIndex",
|
||||
ADD COLUMN "mBannerId" TEXT NOT NULL;
|
||||
@ -0,0 +1,8 @@
|
||||
/*
|
||||
Warnings:
|
||||
|
||||
- Added the required column `mCoverId` to the `Game` table without a default value. This is not possible if the table is not empty.
|
||||
|
||||
*/
|
||||
-- AlterTable
|
||||
ALTER TABLE "Game" ADD COLUMN "mCoverId" TEXT NOT NULL;
|
||||
Reference in New Issue
Block a user