9 lines
329 B
SQL
Executable File
9 lines
329 B
SQL
Executable File
-- Migration 011: Add fabricant and produit fields
|
|
-- Date: 2025-12-31
|
|
|
|
ALTER TABLE peripherals ADD COLUMN fabricant TEXT;
|
|
ALTER TABLE peripherals ADD COLUMN produit TEXT;
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_peripherals_fabricant ON peripherals(fabricant);
|
|
CREATE INDEX IF NOT EXISTS idx_peripherals_produit ON peripherals(produit);
|