Change seen_by in msgdata_template to not be null

The sender has always seen their message, haven't they?
This commit is contained in:
2021-12-12 22:50:47 +01:00
parent ecdcbe6577
commit e192f2d8f9
2 changed files with 7 additions and 7 deletions

View File

@@ -7,6 +7,6 @@ CREATE TABLE msgdata_{chat_id} (
msg_type INTEGER NOT NULL,
content TEXT,
hide_for TEXT,
seen_by TEXT,
seen_by TEXT NOT NULL,
CONSTRAINT PK_msgdata_{chat_id} PRIMARY KEY (msg_id, timestamp)
);