a76ec74338
C++ ImGui kanban for steering LLM agents. Six panels (Board, Calendar, Dashboard, Agent runs, Worktrees, DoD inspector) wired to registry functions http_request, kpi_card, sparkline, agent_runs_timeline, dod_evidence_panel. Backend Go on :8403 (independent operations.db from kanban_web).
5 lines
290 B
SQL
5 lines
290 B
SQL
-- Deadline opcional por card. Fecha RFC3339 (precision dia o instante).
|
|
-- NULL = sin deadline (default). El frontend muestra countdown hasta la fecha.
|
|
ALTER TABLE cards ADD COLUMN deadline TEXT;
|
|
CREATE INDEX IF NOT EXISTS idx_cards_deadline ON cards(deadline) WHERE deadline IS NOT NULL;
|