Add LoRa metadata fields to nodes and messages (#331)

* Add LoRa metadata fields to nodes and messages

* Filter numeric SQLite keys from message rows
This commit is contained in:
l5y
2025-10-14 14:51:28 +02:00
committed by GitHub
parent e97498d09f
commit 03b5a10fe4
9 changed files with 159 additions and 20 deletions
+3 -1
View File
@@ -39,7 +39,9 @@ CREATE TABLE IF NOT EXISTS nodes (
precision_bits INTEGER,
latitude REAL,
longitude REAL,
altitude REAL
altitude REAL,
lora_freq INTEGER,
modem_preset TEXT
);
CREATE INDEX IF NOT EXISTS idx_nodes_last_heard ON nodes(last_heard);