better distinguish between update-items and payloads: update-items contain a payload (and maybe more in the future)

This commit is contained in:
B. Petersen
2021-12-22 01:26:34 +01:00
committed by bjoern
parent 7ad7ccb8fe
commit bd988d805c
2 changed files with 7 additions and 7 deletions

View File

@@ -555,8 +555,8 @@ DO UPDATE SET rfc724_mid=excluded.rfc724_mid,
r#"CREATE TABLE msgs_status_updates (
id INTEGER PRIMARY KEY AUTOINCREMENT,
msg_id INTEGER,
payload TEXT DEFAULT '',
payload_read INTEGER DEFAULT 0);
update_item TEXT DEFAULT '',
update_item_read INTEGER DEFAULT 0);
CREATE INDEX msgs_status_updates_index1 ON msgs_status_updates (msg_id);"#,
84,
)