mirror of
https://github.com/zvx-echo6/central.git
synced 2026-05-21 18:14:44 +02:00
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>
6 lines
234 B
SQL
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;
|