uptime-kuma/db/patch-add-docker-columns.sql

11 lines
237 B
MySQL
Raw Normal View History

2022-01-13 16:17:07 +00:00
-- You should not modify if this have pushed to Github, unless it does serious wrong with the db.
BEGIN TRANSACTION;
ALTER TABLE monitor
ADD docker_daemon VARCHAR(255);
ALTER TABLE monitor
ADD docker_container VARCHAR(255);
COMMIT;