Add ability to mark survey as completed after x responses (#395)

* mark survey as completed after x responses
This commit is contained in:
Surendhar
2023-06-19 16:26:07 +05:30
committed by GitHub
parent e64d2b9ac1
commit 495b53e98f
7 changed files with 106 additions and 58 deletions
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Survey" ADD COLUMN "autoComplete" INTEGER;
+1
View File
@@ -208,6 +208,7 @@ model Survey {
displays Display[]
autoClose Int?
delay Int @default(0)
autoComplete Int?
}
model Event {