-- v2 Phase 1 — Live unified context
-- 1. Widen journal type enum for upcoming automated entry types:
--    'auto'            — nightly auto-journal (Phase 3)
--    'voice-note'      — mobile coach sessions (Phase 6)
--    'finance-weekly'  — weekly financial pulse (Phase 4)
--    'finance-monthly' — monthly P&L snapshot (Phase 4)
-- Existing values are preserved; this is additive only.

ALTER TABLE journal_entries
    MODIFY type ENUM('checkin','reflection','gtd-review','note','auto','voice-note','finance-weekly','finance-monthly')
    NOT NULL DEFAULT 'checkin';
