From ec9738a069e61529be040eff065318972b8a11e2 Mon Sep 17 00:00:00 2001 From: soryu Date: Wed, 4 Mar 2026 16:47:12 +0000 Subject: feat: task slide-out panel, 3-way reconcile toggle, daemon reauth fix (#85) * WIP: heartbeat checkpoint * WIP: heartbeat checkpoint * feat: soryu-co/soryu - makima: Fix daemon reauth flow for new claude setup-token output format * feat: soryu-co/soryu - makima: Update frontend reconcile toggle to three-way switch * feat: soryu-co/soryu - makima: Add task slide-out panel to directive page --- makima/migrations/20260304000000_reconcile_mode_to_text.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 makima/migrations/20260304000000_reconcile_mode_to_text.sql (limited to 'makima/migrations') diff --git a/makima/migrations/20260304000000_reconcile_mode_to_text.sql b/makima/migrations/20260304000000_reconcile_mode_to_text.sql new file mode 100644 index 0000000..a15dd77 --- /dev/null +++ b/makima/migrations/20260304000000_reconcile_mode_to_text.sql @@ -0,0 +1,4 @@ +-- Change reconcile_mode from BOOLEAN to TEXT with three-way enum: auto, semi-auto, manual. +-- Backward compatibility: true -> 'semi-auto', false -> 'auto'. +ALTER TABLE directives ALTER COLUMN reconcile_mode TYPE TEXT USING CASE WHEN reconcile_mode THEN 'semi-auto' ELSE 'auto' END; +ALTER TABLE directives ALTER COLUMN reconcile_mode SET DEFAULT 'auto'; -- cgit v1.2.3