diff --git a/packages/prisma/migrations/20220721183745_/migration.sql b/packages/prisma/migrations/20220721183745_/migration.sql new file mode 100644 index 0000000000..3ee21c8100 --- /dev/null +++ b/packages/prisma/migrations/20220721183745_/migration.sql @@ -0,0 +1,11 @@ +-- DropForeignKey +ALTER TABLE "DestinationCalendar" DROP CONSTRAINT "DestinationCalendar_eventTypeId_fkey"; + +-- DropForeignKey +ALTER TABLE "DestinationCalendar" DROP CONSTRAINT "DestinationCalendar_userId_fkey"; + +-- AddForeignKey +ALTER TABLE "DestinationCalendar" ADD CONSTRAINT "DestinationCalendar_userId_fkey" FOREIGN KEY ("userId") REFERENCES "users"("id") ON DELETE SET NULL ON UPDATE CASCADE; + +-- AddForeignKey +ALTER TABLE "DestinationCalendar" ADD CONSTRAINT "DestinationCalendar_eventTypeId_fkey" FOREIGN KEY ("eventTypeId") REFERENCES "EventType"("id") ON DELETE SET NULL ON UPDATE CASCADE;