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

10 lines
158 B
MySQL
Raw Normal View History

BEGIN TRANSACTION;
CREATE TABLE monitor_tls_info (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
monitor_id INTEGER NOT NULL,
info_json TEXT
);
COMMIT;