This commit is contained in:
Gilles Soulier
2026-01-05 16:08:01 +01:00
parent dcba044cd6
commit c67befc549
2215 changed files with 26743 additions and 329 deletions

View File

@@ -0,0 +1,8 @@
-- 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);