adding notes to machines
Deploy / deploy (push) Successful in 39s

This commit is contained in:
2026-05-07 20:51:25 +02:00
parent 9dba20441c
commit f37d6d52f7
4 changed files with 16 additions and 5 deletions
+2
View File
@@ -38,4 +38,6 @@ function migrate($db) {
role ENUM('admin','user') DEFAULT 'user',
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)");
// Add notes column if missing
try { $db->exec("ALTER TABLE network_nodes ADD COLUMN notes TEXT DEFAULT ''"); } catch (Exception $e) {}
}