summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-10-22 11:18:01 +0100
committerErik Johnston <erik@matrix.org>2015-10-22 11:18:01 +0100
commitf142898f529f89c5bd90710db2d0771894b0b33f (patch)
treed89ec6873034a8d367a91704ba947e9b3ff2c4c2 /synapse/storage
parentMove FTS to delta 25 (diff)
downloadsynapse-f142898f529f89c5bd90710db2d0771894b0b33f.tar.xz
PEP8
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/schema/delta/25/fts.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/storage/schema/delta/25/fts.py b/synapse/storage/schema/delta/25/fts.py
index fd181fc630..ed3cc06557 100644
--- a/synapse/storage/schema/delta/25/fts.py
+++ b/synapse/storage/schema/delta/25/fts.py
@@ -53,7 +53,8 @@ CREATE INDEX event_search_ev_ridx ON event_search(room_id);
 
 
 SQLITE_TABLE = (
-    "CREATE VIRTUAL TABLE IF NOT EXISTS event_search USING fts3 ( event_id, room_id, key, value)"
+    "CREATE VIRTUAL TABLE IF NOT EXISTS event_search"
+    " USING fts3 ( event_id, room_id, key, value)"
 )