-- 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);