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;