add go bench client
This commit is contained in:
7
backend/migrations/014_add_pci_slot.sql
Normal file
7
backend/migrations/014_add_pci_slot.sql
Normal 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);
|
||||
Reference in New Issue
Block a user