Merge branch 'main' into feat/webhook-implementation

This commit is contained in:
Lucas Smith
2024-02-27 18:17:54 +11:00
committed by GitHub
6 changed files with 85 additions and 21 deletions

View File

@ -0,0 +1,5 @@
-- DropForeignKey
ALTER TABLE "Field" DROP CONSTRAINT "Field_recipientId_fkey";
-- AddForeignKey
ALTER TABLE "Field" ADD CONSTRAINT "Field_recipientId_fkey" FOREIGN KEY ("recipientId") REFERENCES "Recipient"("id") ON DELETE CASCADE ON UPDATE CASCADE;