From 241622ff7fd612eb521dec8829153851406c5884 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Sun, 7 Jan 2024 22:22:51 +0100 Subject: Store incoming frames in DB and show most recent 10 in dashboard --- migrations/20231230_create.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'migrations') diff --git a/migrations/20231230_create.sql b/migrations/20231230_create.sql index 23d7282..261c18d 100644 --- a/migrations/20231230_create.sql +++ b/migrations/20231230_create.sql @@ -1,6 +1,6 @@ CREATE TABLE IF NOT EXISTS frames_received ( id INTEGER NOT NULL PRIMARY KEY, - recevied_at INTEGER, - content VARCHAR + received_at INTEGER, + content BLOB ); -- cgit v1.2.3