From 109463f24289daf3b0862b9a581299e71e534341 Mon Sep 17 00:00:00 2001 From: headlessdev Date: Thu, 1 May 2025 17:00:02 +0200 Subject: [PATCH] Migrations --- prisma/migrations/20250501140355_add_m_fields/migration.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 prisma/migrations/20250501140355_add_m_fields/migration.sql diff --git a/prisma/migrations/20250501140355_add_m_fields/migration.sql b/prisma/migrations/20250501140355_add_m_fields/migration.sql new file mode 100644 index 0000000..125cbe2 --- /dev/null +++ b/prisma/migrations/20250501140355_add_m_fields/migration.sql @@ -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;