diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2020-07-29 18:26:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-29 18:26:55 +0100 |
commit | 8dff4a12424cda9e4abaa5f2905d58aa6e723777 (patch) | |
tree | ed7a3fde822301d9cd82ce22eb56e53ae40b5c32 /scripts | |
parent | Various improvements to the docs (#7899) (diff) | |
download | synapse-8dff4a12424cda9e4abaa5f2905d58aa6e723777.tar.xz |
Re-implement unread counts (#7736)
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/synapse_port_db | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/synapse_port_db b/scripts/synapse_port_db index 22a6abd7d2..bee525197f 100755 --- a/scripts/synapse_port_db +++ b/scripts/synapse_port_db @@ -69,7 +69,7 @@ logger = logging.getLogger("synapse_port_db") BOOLEAN_COLUMNS = { - "events": ["processed", "outlier", "contains_url"], + "events": ["processed", "outlier", "contains_url", "count_as_unread"], "rooms": ["is_public"], "event_edges": ["is_state"], "presence_list": ["accepted"], |