969 B
969 B
Schema Migration Delta Log — 2026-03-25
Date: 2026-03-25
Delta Summary
- Normalized
recipestable: removed JSON columns for ingredients and instructions - Added
ingredientstable (with position/order, FK to recipe) - Added
stepstable (with position/order, FK to recipe) - Removed
notesandlast_cooked_atcolumns from recipes - Changed timestamp columns to DATETIME for better SQLite compatibility
- Removed color from tags table
- Added index on
ingredients(item) - Confirmed/completed indexes per spec
See ../migrations/2026-03-25-schema-migration.md for the detailed migration plan and SQL changes.
Action Items
- Implement migration logic (split JSON columns)
- Update
src/backend/db/schema.sqlwith normalized tables - Write data migration script for live DBs (extract and insert ingredient/step records)
- Run DB migration
- Update test cases and data fixtures