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

11 lines
237 B
SQL

-- 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;