mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-10-06 02:08:40 -04:00
feat: add ability to group monitors in dashboard
This commit is contained in:
parent
d99d37898e
commit
645fd94bba
11 changed files with 411 additions and 44 deletions
6
db/patch-add-parent-monitor.sql
Normal file
6
db/patch-add-parent-monitor.sql
Normal file
|
@ -0,0 +1,6 @@
|
|||
BEGIN TRANSACTION;
|
||||
|
||||
ALTER TABLE monitor
|
||||
ADD parent INTEGER REFERENCES [monitor] ([id]) ON DELETE SET NULL ON UPDATE CASCADE;
|
||||
|
||||
COMMIT
|
Loading…
Add table
Add a link
Reference in a new issue