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

12 lines
430 B
SQL
Executable File

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