8 lines
255 B
SQL
8 lines
255 B
SQL
-- 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);
|