Files
wursor/supabase/migrations/004_add_notes_to_diffs.sql
T
2026-04-29 04:07:16 +01:00

7 lines
345 B
SQL

-- ── Migration 004: Add notes column to intent_diffs ──────────────────────────
-- Allows the coding agent to record why a diff was blocked or any implementation
-- notes when updating status via the Agent Bridge MCP tool.
ALTER TABLE intent_diffs
ADD COLUMN IF NOT EXISTS notes TEXT;