feat(prisma): add expectedOutput field to Testcase model

This commit is contained in:
cfngc4594 2025-04-10 10:16:05 +08:00
parent 3f10c08a6c
commit 11fac9b3d6

View File

@ -133,6 +133,7 @@ model Testcase {
problemId String
problem Problem @relation(fields: [problemId], references: [id], onDelete: Cascade)
data TestcaseData[]
expectedOutput String
}
model TestcaseData {