Network map enhancements and fixes

This commit is contained in:
2026-06-05 16:42:56 +08:00
parent e2ddc9a3ae
commit d813ee45a2
14 changed files with 2473 additions and 395 deletions
@@ -0,0 +1,4 @@
-- Add status column to network_devices for online/offline/warning indicators.
ALTER TABLE network_devices
ADD COLUMN IF NOT EXISTS status TEXT NOT NULL DEFAULT 'unknown'
CHECK (status IN ('online', 'offline', 'warning', 'unknown'));