Files
serv_benchmark/backend/migrations/add_bios_vendor.sql
2025-12-14 10:40:54 +01:00

10 lines
415 B
SQL

-- Migration: Add bios_vendor column to hardware_snapshots
-- Date: 2025-12-14
-- Description: Add missing bios_vendor field to store BIOS manufacturer information
-- Add bios_vendor column (nullable)
ALTER TABLE hardware_snapshots ADD COLUMN bios_vendor VARCHAR(100);
-- Note: No need to populate existing rows since the field was not collected before
-- Future benchmarks will populate this field automatically