initial work on metadata system

This commit is contained in:
DecDuck
2024-09-29 11:08:49 +10:00
parent e1a789fa36
commit 196f87c219
5 changed files with 278 additions and 0 deletions

View File

@ -0,0 +1,76 @@
-- CreateEnum
CREATE TYPE "MetadataSource" AS ENUM ('Custom', 'GiantBomb');
-- CreateTable
CREATE TABLE "Game" (
"id" TEXT NOT NULL,
"metadataSource" "MetadataSource" NOT NULL,
"metadataId" TEXT NOT NULL,
"mName" TEXT NOT NULL,
"mShortDescription" TEXT NOT NULL,
"mDescription" TEXT NOT NULL,
"mReviewCount" INTEGER NOT NULL,
"mReviewRating" DOUBLE PRECISION NOT NULL,
"mIconId" TEXT NOT NULL,
"mBannerId" TEXT NOT NULL,
"mArt" TEXT[],
"mScreenshots" TEXT[],
CONSTRAINT "Game_pkey" PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "Developer" (
"id" TEXT NOT NULL,
"metadataSource" "MetadataSource" NOT NULL,
"metadataId" TEXT NOT NULL,
"mName" TEXT NOT NULL,
CONSTRAINT "Developer_pkey" PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "Publisher" (
"id" TEXT NOT NULL,
"metadataSource" "MetadataSource" NOT NULL,
"metadataId" TEXT NOT NULL,
"mName" TEXT NOT NULL,
CONSTRAINT "Publisher_pkey" PRIMARY KEY ("id")
);
-- CreateTable
CREATE TABLE "_GameToPublisher" (
"A" TEXT NOT NULL,
"B" TEXT NOT NULL
);
-- CreateTable
CREATE TABLE "_DeveloperToGame" (
"A" TEXT NOT NULL,
"B" TEXT NOT NULL
);
-- CreateIndex
CREATE UNIQUE INDEX "_GameToPublisher_AB_unique" ON "_GameToPublisher"("A", "B");
-- CreateIndex
CREATE INDEX "_GameToPublisher_B_index" ON "_GameToPublisher"("B");
-- CreateIndex
CREATE UNIQUE INDEX "_DeveloperToGame_AB_unique" ON "_DeveloperToGame"("A", "B");
-- CreateIndex
CREATE INDEX "_DeveloperToGame_B_index" ON "_DeveloperToGame"("B");
-- AddForeignKey
ALTER TABLE "_GameToPublisher" ADD CONSTRAINT "_GameToPublisher_A_fkey" FOREIGN KEY ("A") REFERENCES "Game"("id") ON DELETE CASCADE ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "_GameToPublisher" ADD CONSTRAINT "_GameToPublisher_B_fkey" FOREIGN KEY ("B") REFERENCES "Publisher"("id") ON DELETE CASCADE ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "_DeveloperToGame" ADD CONSTRAINT "_DeveloperToGame_A_fkey" FOREIGN KEY ("A") REFERENCES "Developer"("id") ON DELETE CASCADE ON UPDATE CASCADE;
-- AddForeignKey
ALTER TABLE "_DeveloperToGame" ADD CONSTRAINT "_DeveloperToGame_B_fkey" FOREIGN KEY ("B") REFERENCES "Game"("id") ON DELETE CASCADE ON UPDATE CASCADE;

View File

@ -0,0 +1,24 @@
/*
Warnings:
- Added the required column `mBanner` to the `Developer` table without a default value. This is not possible if the table is not empty.
- Added the required column `mDescription` to the `Developer` table without a default value. This is not possible if the table is not empty.
- Added the required column `mLogo` to the `Developer` table without a default value. This is not possible if the table is not empty.
- Added the required column `mShortDescription` to the `Developer` table without a default value. This is not possible if the table is not empty.
- Added the required column `mBanner` to the `Publisher` table without a default value. This is not possible if the table is not empty.
- Added the required column `mDescription` to the `Publisher` table without a default value. This is not possible if the table is not empty.
- Added the required column `mLogo` to the `Publisher` table without a default value. This is not possible if the table is not empty.
- Added the required column `mShortDescription` to the `Publisher` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "Developer" ADD COLUMN "mBanner" TEXT NOT NULL,
ADD COLUMN "mDescription" TEXT NOT NULL,
ADD COLUMN "mLogo" TEXT NOT NULL,
ADD COLUMN "mShortDescription" TEXT NOT NULL;
-- AlterTable
ALTER TABLE "Publisher" ADD COLUMN "mBanner" TEXT NOT NULL,
ADD COLUMN "mDescription" TEXT NOT NULL,
ADD COLUMN "mLogo" TEXT NOT NULL,
ADD COLUMN "mShortDescription" TEXT NOT NULL;

View File

@ -34,3 +34,61 @@ model LinkedAuthMec {
@@id([userId, mec])
}
enum MetadataSource {
Custom
GiantBomb
}
model Game {
id String @id @default(uuid())
metadataSource MetadataSource
metadataId String
// Any field prefixed with m is filled in from metadata
// Acts as a cache so we can search and filter it
mName String // Name of game
mShortDescription String // Short description
mDescription String // Supports markdown
mDevelopers Developer[]
mPublishers Publisher[]
mReviewCount Int
mReviewRating Float
mIconId String // linked to objects in s3
mBannerId String // linked to objects in s3
mArt String[] // linked to objects in s3
mScreenshots String[] // linked to objects in s3
}
model Developer {
id String @id @default(uuid())
metadataSource MetadataSource
metadataId String
mName String
mShortDescription String
mDescription String
mLogo String
mBanner String
games Game[]
}
model Publisher {
id String @id @default(uuid())
metadataSource MetadataSource
metadataId String
mName String
mShortDescription String
mDescription String
mLogo String
mBanner String
games Game[]
}