feat: add comment field to ChecklistResult for error descriptions

This commit is contained in:
Kirill
2026-05-24 16:50:51 +05:00
parent b757f18bfb
commit 5ef3861e84
2 changed files with 3 additions and 0 deletions
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "ChecklistResult" ADD COLUMN "comment" TEXT;
+1
View File
@@ -346,6 +346,7 @@ model ChecklistResult {
id String @id @default(cuid())
itemKey String @unique
passed Boolean
comment String?
checkedAt DateTime @default(now())
updatedAt DateTime @updatedAt
}