mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-17 21:34:45 +08:00
7 lines
259 B
MySQL
7 lines
259 B
MySQL
|
|
-- Add last_result to ops_job_heartbeats for UI job details.
|
||
|
|
|
||
|
|
ALTER TABLE IF EXISTS ops_job_heartbeats
|
||
|
|
ADD COLUMN IF NOT EXISTS last_result TEXT;
|
||
|
|
|
||
|
|
COMMENT ON COLUMN ops_job_heartbeats.last_result IS 'Last successful run result summary (human readable).';
|