mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-17 14:56:36 +00:00
refactor(schema): rename TestcaseResult fields to camelCase
This commit is contained in:
parent
fbf563dfdf
commit
81f89f7b16
@ -141,7 +141,7 @@ model Submission {
|
||||
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
||||
problem Problem @relation(fields: [problemId], references: [id], onDelete: Cascade)
|
||||
|
||||
TestcaseResult TestcaseResult[]
|
||||
testcaseResults TestcaseResult[]
|
||||
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
@ -153,7 +153,7 @@ model Testcase {
|
||||
problem Problem @relation(fields: [problemId], references: [id], onDelete: Cascade)
|
||||
data TestcaseData[]
|
||||
expectedOutput String
|
||||
TestcaseResult TestcaseResult[]
|
||||
testcaseResults TestcaseResult[]
|
||||
}
|
||||
|
||||
model TestcaseData {
|
||||
|
Loading…
Reference in New Issue
Block a user