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,7 @@
-- Migration 014: Add pci_slot field
-- This field stores the PCI slot identifier (e.g., "08:00.0")
ALTER TABLE peripherals ADD COLUMN pci_slot VARCHAR(20);
-- Add index for faster lookups
CREATE INDEX idx_peripherals_pci_slot ON peripherals(pci_slot);