1
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2025-04-21 12:17:02 +02:00

14 lines
294 B
MySQL
Raw Normal View History

-- You should not modify if this have pushed to Github, unless it does serious wrong with the db.
BEGIN TRANSACTION;
ALTER TABLE monitor
ADD tls_ca TEXT default null;
ALTER TABLE monitor
ADD tls_cert TEXT default null;
ALTER TABLE monitor
ADD tls_key TEXT default null;
COMMIT;