Move to blob storage for payload hashes

This commit is contained in:
Jack Kingsman
2026-02-27 15:46:16 -08:00
parent 6a3510ce2e
commit 194852ed16
5 changed files with 264 additions and 24 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ CREATE TABLE IF NOT EXISTS raw_packets (
timestamp INTEGER NOT NULL,
data BLOB NOT NULL,
message_id INTEGER,
payload_hash TEXT,
payload_hash BLOB,
FOREIGN KEY (message_id) REFERENCES messages(id)
);