feat(delete games): update prisma & delete games

This commit is contained in:
DecDuck
2024-12-23 21:12:32 +11:00
parent fd4a7d1981
commit 089c3e03f6
8 changed files with 111 additions and 55 deletions

View File

@ -0,0 +1,11 @@
-- AlterTable
ALTER TABLE "_DeveloperToGame" ADD CONSTRAINT "_DeveloperToGame_AB_pkey" PRIMARY KEY ("A", "B");
-- DropIndex
DROP INDEX "_DeveloperToGame_AB_unique";
-- AlterTable
ALTER TABLE "_GameToPublisher" ADD CONSTRAINT "_GameToPublisher_AB_pkey" PRIMARY KEY ("A", "B");
-- DropIndex
DROP INDEX "_GameToPublisher_AB_unique";