.
Deploy / deploy (push) Successful in 38s

This commit is contained in:
2026-05-07 21:44:45 +02:00
parent 86120c4c82
commit 7b54e32901
+1 -1
View File
@@ -38,5 +38,5 @@ function migrate($db) {
role ENUM('admin','user') DEFAULT 'user', role ENUM('admin','user') DEFAULT 'user',
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)"); )");
$db->exec("CREATE TABLE IF NOT EXISTS node_notes (node_id INT PRIMARY KEY, notes TEXT DEFAULT '')"); $db->exec("CREATE TABLE IF NOT EXISTS node_notes (id INT AUTO_INCREMENT PRIMARY KEY, node_id INT NOT NULL UNIQUE, notes TEXT DEFAULT '')");
} }