From c32704af27fc7d3aaf0a38ec75dd1bd6b6519c50 Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Sun, 16 Mar 2025 19:07:55 +0800 Subject: [PATCH] chore(prisma): run prisma migrate to add JudgeResult model --- .../migration.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 prisma/migrations/20250316110650_add_judge_result_model/migration.sql diff --git a/prisma/migrations/20250316110650_add_judge_result_model/migration.sql b/prisma/migrations/20250316110650_add_judge_result_model/migration.sql new file mode 100644 index 0000000..fd0edb5 --- /dev/null +++ b/prisma/migrations/20250316110650_add_judge_result_model/migration.sql @@ -0,0 +1,10 @@ +-- CreateTable +CREATE TABLE "JudgeResult" ( + "id" TEXT NOT NULL, + "output" TEXT NOT NULL, + "exitCode" "ExitCode" NOT NULL, + "executionTime" INTEGER, + "memoryUsage" INTEGER, + + CONSTRAINT "JudgeResult_pkey" PRIMARY KEY ("id") +);