add gpuUsage and temp fields to server and server_history models in schema.prisma

This commit is contained in:
headlessdev
2025-04-28 19:48:30 +02:00
parent f7697ff925
commit 07497b1832
3 changed files with 13 additions and 17 deletions

View File

@@ -0,0 +1,7 @@
-- AlterTable
ALTER TABLE "server" ADD COLUMN "gpuUsage" TEXT,
ADD COLUMN "temp" TEXT;
-- AlterTable
ALTER TABLE "server_history" ADD COLUMN "gpuUsage" TEXT,
ADD COLUMN "temp" TEXT;