10 lines
415 B
SQL
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
|