feat(schema): add expectedOutput field to Testcase model

This commit is contained in:
cfngc4594 2025-04-10 10:19:17 +08:00
parent 11fac9b3d6
commit e2914d1e18

View File

@ -0,0 +1,8 @@
/*
Warnings:
- Added the required column `expectedOutput` to the `Testcase` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "Testcase" ADD COLUMN "expectedOutput" TEXT NOT NULL;