Remove raw node json column (#12)

This commit is contained in:
l5y
2025-09-13 14:21:31 +02:00
committed by GitHub
parent aeaa2eb1a7
commit 94171b779c
4 changed files with 10 additions and 29 deletions
+1 -2
View File
@@ -24,8 +24,7 @@ CREATE TABLE IF NOT EXISTS nodes (
location_source TEXT,
latitude REAL,
longitude REAL,
altitude REAL,
node_json TEXT NOT NULL -- full original node object for debugging
altitude REAL
);
CREATE INDEX IF NOT EXISTS idx_nodes_last_heard ON nodes(last_heard);