diff --git a/prisma/schema.prisma b/prisma/schema.prisma index fe6d344..a6f2dc8 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -98,6 +98,17 @@ model Template { @@id([problemId, language]) } +enum ExitCode { + SE // System Error + CS // Compilation Success + CE // Compilation Error + TLE // Time Limit Exceeded + MLE // Memory Limit Exceeded + RE // Runtime Error + AC // Accepted + WA // Wrong Answer +} + model Account { userId String type String