0
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-11-28 10:36:39 +01:00
uptime-kuma/db/patch-add-docker-columns.sql

11 lines
237 B
MySQL
Raw Normal View History

2022-01-13 17:17:07 +01: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;