feat: add ability to group monitors in dashboard

This commit is contained in:
Peace 2023-01-28 02:58:03 +01:00
parent d99d37898e
commit 645fd94bba
No known key found for this signature in database
GPG key ID: 0EF6B46E172B739F
11 changed files with 411 additions and 44 deletions

View file

@ -0,0 +1,6 @@
BEGIN TRANSACTION;
ALTER TABLE monitor
ADD parent INTEGER REFERENCES [monitor] ([id]) ON DELETE SET NULL ON UPDATE CASCADE;
COMMIT