addon
This commit is contained in:
8
backend/migrations/011_add_fabricant_produit.sql
Executable file
8
backend/migrations/011_add_fabricant_produit.sql
Executable 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);
|
||||
Reference in New Issue
Block a user