From 566ed61126b5cdb563d54b8495d137cccd617dd7 Mon Sep 17 00:00:00 2001 From: Erik Foris Date: Thu, 18 Nov 2021 09:45:39 +0000 Subject: [PATCH] add ability to save who has seen the massage --- src/sqlite/msgdata_template.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sqlite/msgdata_template.sql b/src/sqlite/msgdata_template.sql index 9b1ee2c..a8c31fa 100644 --- a/src/sqlite/msgdata_template.sql +++ b/src/sqlite/msgdata_template.sql @@ -7,5 +7,6 @@ CREATE TABLE msgdata_{chat_id} ( msg_type INTEGER NOT NULL, content TEXT, hide_for TEXT, + read_by TEXT, CONSTRAINT PK_msgdata_{chat_id} PRIMARY KEY (msg_id, timestamp) ); \ No newline at end of file