fix(prisma): make TestcaseResult.output field optional

This commit is contained in:
cfngc4594 2025-05-16 10:42:20 +08:00
parent 9443ab6d6d
commit 23a7e2e69e

View File

@ -168,7 +168,7 @@ model TestcaseInput {
model TestcaseResult {
id String @id @default(cuid())
isCorrect Boolean
output String
output String?
timeUsage Int?
memoryUsage Int?