Browse Source

Feature/upgrade prisma to version 6 schema migration (#4087)

* Upgrade prisma to version 6 schema migration
pull/4089/head
Thomas Kaul 2 months ago
committed by GitHub
parent
commit
ea24a618b0
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 5
      prisma/migrations/20241130164334_upgraded_to_prisma_6/migration.sql

5
prisma/migrations/20241130164334_upgraded_to_prisma_6/migration.sql

@ -0,0 +1,5 @@
-- AlterTable
ALTER TABLE "_OrderToTag" ADD CONSTRAINT "_OrderToTag_AB_pkey" PRIMARY KEY ("A", "B");
-- DropIndex
DROP INDEX "_OrderToTag_AB_unique";
Loading…
Cancel
Save