db: add last_error column to adapters table

Migration 015: Adds last_error TEXT column to config.adapters.
Populated by supervisor when an adapter fails to start or apply config.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Matt Johnson 2026-05-18 23:26:19 +00:00
commit bff6ccffff

View file

@ -0,0 +1,6 @@
-- Migration: 015_add_adapters_last_error
-- Adds last_error column for adapter-side error reporting.
-- Populated by supervisor when an adapter fails to start or apply config.
ALTER TABLE config.adapters
ADD COLUMN last_error TEXT;