add ability to save who has seen the massage

This commit is contained in:
Erik Foris 2021-11-18 09:45:39 +00:00
parent ba2b882ed6
commit 566ed61126

View File

@ -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)
);