fix id column name

Robert Malikowski committed May 26, 2026 at 20:36 UTC ea0b68413664c21cd54c4169cb6539fe25769e29
1 file changed +1 -1
cw_core/lib/node.dart
+1 -1
@@ -205,7 +205,7 @@ class Node {
205 }
206
207 static Future<Node?> get(int id) async {
208 - return select("id = ?", [id]);
208 + return select("${selfIdColumn} = ?", [id]);
209 }
210
211