Archive/delete and mark unread now use ReplayQueue. Closes #4526

This commit is contained in:
Eric Gregory 2012-01-09 10:58:13 -08:00
parent eea2b31a73
commit 049a718c34
20 changed files with 693 additions and 157 deletions

View file

@ -54,7 +54,8 @@ CREATE TABLE MessageLocationTable (
id INTEGER PRIMARY KEY,
message_id INTEGER REFERENCES MessageTable ON DELETE CASCADE,
folder_id INTEGER REFERENCES FolderTable ON DELETE CASCADE,
ordering INTEGER
ordering INTEGER,
remove_marker INTEGER DEFAULT 0
);
CREATE INDEX MessageLocationTableMessageIDIndex ON MessageLocationTable(message_id);