This commit is contained in:
2025-12-14 10:40:54 +01:00
parent 5d483b0df5
commit 8428bf9c82
55 changed files with 9763 additions and 391 deletions

View File

@@ -0,0 +1,9 @@
-- 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