From 1894de5d866706bcf045420a083148aafc419f7d Mon Sep 17 00:00:00 2001 From: W1CDN Date: Wed, 13 Dec 2023 10:24:17 -0600 Subject: [PATCH] Add header_raw field. --- constants.py | 1 + schema.sql | 1 + 2 files changed, 2 insertions(+) diff --git a/constants.py b/constants.py index b950705..7ade087 100644 --- a/constants.py +++ b/constants.py @@ -12,6 +12,7 @@ db_frames_fields = ("id", "frame", "from", "gpsfixstatus", +"header_raw", "latitude", "longitude", "mbits", diff --git a/schema.sql b/schema.sql index 943b93a..c6fe23d 100644 --- a/schema.sql +++ b/schema.sql @@ -14,6 +14,7 @@ CREATE TABLE frames ( frame TEXT, "from" TEXT, gpsfixstatus TEXT, + header_raw TEXT, latitude REAL, longitude REAL, mbits INT,