.
Deploy / deploy (push) Successful in 38s

This commit is contained in:
2026-05-07 21:26:48 +02:00
parent ffe1e26cc7
commit 2376ee98e7
3 changed files with 39 additions and 36 deletions
+8 -1
View File
@@ -68,4 +68,11 @@ INSERT IGNORE INTO teams (name, color) VALUES
('Blue Team', '#0d6efd'),
('Red Team', '#dc3545'),
('SOC', '#ffc107'),
('Threat Intel', '#198754');
('Threat Intel', '#198754');
-- Ensure notes column exists and grant ALTER privilege
CREATE TABLE IF NOT EXISTS node_notes (
node_id INT PRIMARY KEY,
notes TEXT DEFAULT '',
FOREIGN KEY (node_id) REFERENCES network_nodes(id) ON DELETE CASCADE
);