mirror of
https://github.com/zvx-echo6/central.git
synced 2026-05-22 02:24:38 +02:00
6 lines
234 B
MySQL
6 lines
234 B
MySQL
|
|
-- 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;
|