diff options
| author | soryu <soryu@soryu.co> | 2026-03-04 16:47:12 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-04 16:47:12 +0000 |
| commit | ec9738a069e61529be040eff065318972b8a11e2 (patch) | |
| tree | d1b15d3b22d4980acff4fba8a12b99920035025c /makima/migrations | |
| parent | 78cb861412850889424ae7d5ae5cd952a2b90295 (diff) | |
| download | soryu-ec9738a069e61529be040eff065318972b8a11e2.tar.gz soryu-ec9738a069e61529be040eff065318972b8a11e2.zip | |
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
Diffstat (limited to 'makima/migrations')
| -rw-r--r-- | makima/migrations/20260304000000_reconcile_mode_to_text.sql | 4 |
1 files changed, 4 insertions, 0 deletions
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'; |
