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,11 @@
-- Migration 008: Add specifications and notes fields
-- Date: 2025-12-31
-- Add specifications field (Markdown format - technical specs from imported .md files)
ALTER TABLE peripherals ADD COLUMN specifications TEXT;
-- Add notes field (Markdown format - free notes)
ALTER TABLE peripherals ADD COLUMN notes TEXT;
-- Optional: Migrate existing notes from other fields if needed
-- (No migration needed as this is a new field)