12 lines
430 B
SQL
Executable File
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)
|