fix: updates from review

This commit is contained in:
Mythie
2023-12-21 20:42:45 +11:00
parent 298396c86c
commit 7babd82470
10 changed files with 37 additions and 20 deletions

View File

@ -0,0 +1,12 @@
/*
Warnings:
- Made the column `readStatus` on table `Recipient` required. This step will fail if there are existing NULL values in that column.
- Made the column `signingStatus` on table `Recipient` required. This step will fail if there are existing NULL values in that column.
- Made the column `sendStatus` on table `Recipient` required. This step will fail if there are existing NULL values in that column.
*/
-- AlterTable
ALTER TABLE "Recipient" ALTER COLUMN "readStatus" SET NOT NULL,
ALTER COLUMN "signingStatus" SET NOT NULL,
ALTER COLUMN "sendStatus" SET NOT NULL;