Files
serv_benchmark/backend/migrations/011_add_fabricant_produit.sql
Gilles Soulier c67befc549 addon
2026-01-05 16:08:01 +01:00

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