summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorErik Johnston <erikj@matrix.org>2017-07-06 10:41:47 +0100
committerErik Johnston <erikj@matrix.org>2017-07-06 10:41:47 +0100
commit581272c9c0f0de12ba61191b9f3e003a5a89a44c (patch)
tree6b41c2096b105f04244ce80e840d0f998dbe226f /scripts
parent9075e259733775cc10629a9ccd5ef41af188747f (diff)
Imported Upstream version 0.22.0
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/synapse_port_db3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/synapse_port_db b/scripts/synapse_port_db
index 2e5d6667..7d158a46 100755
--- a/scripts/synapse_port_db
+++ b/scripts/synapse_port_db
@@ -41,6 +41,7 @@ BOOLEAN_COLUMNS = {
"presence_stream": ["currently_active"],
"public_room_list_stream": ["visibility"],
"device_lists_outbound_pokes": ["sent"],
+ "users_who_share_rooms": ["share_private"],
}
@@ -121,7 +122,7 @@ class Store(object):
try:
txn = conn.cursor()
return func(
- LoggingTransaction(txn, desc, self.database_engine, []),
+ LoggingTransaction(txn, desc, self.database_engine, [], []),
*args, **kwargs
)
except self.database_engine.module.DatabaseError as e: