mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-05-22 14:52:35 +02:00

- ping_count: number of packets to send - ping_deadline: maximum total duration - ping_timeout: time to wait for each response - ping_numeric: output IP addresses instead of hostnames
7 lines
388 B
SQL
7 lines
388 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 ping_count INTEGER default 1 not null;
|
|
ALTER TABLE monitor ADD ping_numeric BOOLEAN default true not null;
|
|
ALTER TABLE monitor ADD ping_deadline INTEGER default 10 not null;
|
|
ALTER TABLE monitor ADD ping_timeout INTEGER default 2 not null;
|
|
COMMIT;
|