Migrations

This commit is contained in:
headlessdev 2025-05-01 17:00:02 +02:00
parent 2b9b7a5960
commit 109463f242

View File

@ -0,0 +1,6 @@
-- AlterTable
ALTER TABLE "server" ADD COLUMN "m_cpu" BOOLEAN NOT NULL DEFAULT true,
ADD COLUMN "m_disk" BOOLEAN NOT NULL DEFAULT true,
ADD COLUMN "m_gpu" BOOLEAN NOT NULL DEFAULT true,
ADD COLUMN "m_ram" BOOLEAN NOT NULL DEFAULT true,
ADD COLUMN "m_temp" BOOLEAN NOT NULL DEFAULT true;