From bff6ccffffea4c1f013f157225038580a993dc0f Mon Sep 17 00:00:00 2001 From: Matt Johnson Date: Mon, 18 May 2026 23:26:19 +0000 Subject: [PATCH] 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 --- sql/migrations/015_add_adapters_last_error.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 sql/migrations/015_add_adapters_last_error.sql diff --git a/sql/migrations/015_add_adapters_last_error.sql b/sql/migrations/015_add_adapters_last_error.sql new file mode 100644 index 0000000..88e18a5 --- /dev/null +++ b/sql/migrations/015_add_adapters_last_error.sql @@ -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;