central/sql/migrations/015_add_adapters_last_error.sql
Matt Johnson bff6ccffff 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>
2026-05-18 23:26:19 +00:00

6 lines
234 B
SQL

-- 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;