central/sql/migrations/015_add_adapters_last_error.sql

6 lines
248 B
MySQL
Raw Normal View History

-- 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 IF NOT EXISTS last_error TEXT;