mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-18 15:26:36 +00:00
feat(prisma): migrate timeLimit and memoryLimit to Problem model
This commit is contained in:
parent
feee3a2580
commit
17c6be8a65
@ -0,0 +1,14 @@
|
||||
/*
|
||||
Warnings:
|
||||
|
||||
- You are about to drop the column `memoryLimit` on the `DockerConfig` table. All the data in the column will be lost.
|
||||
- You are about to drop the column `timeLimit` on the `DockerConfig` table. All the data in the column will be lost.
|
||||
|
||||
*/
|
||||
-- AlterTable
|
||||
ALTER TABLE "DockerConfig" DROP COLUMN "memoryLimit",
|
||||
DROP COLUMN "timeLimit";
|
||||
|
||||
-- AlterTable
|
||||
ALTER TABLE "Problem" ADD COLUMN "memoryLimit" INTEGER NOT NULL DEFAULT 128,
|
||||
ADD COLUMN "timeLimit" INTEGER NOT NULL DEFAULT 1000;
|
Loading…
Reference in New Issue
Block a user