mirror of
https://github.com/zvx-echo6/central.git
synced 2026-05-21 18:14:44 +02:00
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:
parent
966661305f
commit
bff6ccffff
1 changed files with 6 additions and 0 deletions
6
sql/migrations/015_add_adapters_last_error.sql
Normal file
6
sql/migrations/015_add_adapters_last_error.sql
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue