add go bench client

This commit is contained in:
Gilles Soulier
2026-01-11 23:41:30 +01:00
parent c67befc549
commit 6abc70cdfe
80 changed files with 13311 additions and 61 deletions

View File

@@ -0,0 +1,10 @@
-- Migration 013: Add generic device_id field
-- This field stores the physical identifier of the device:
-- - For PCI devices: the slot (e.g., "08:00.0")
-- - For USB devices: the bus-device (e.g., "001-004")
-- - For other devices: any relevant identifier
ALTER TABLE peripherals ADD COLUMN device_id VARCHAR(50);
-- Add index for faster lookups
CREATE INDEX idx_peripherals_device_id ON peripherals(device_id);