diff options
author | Erik Johnston <erik@matrix.org> | 2015-10-22 11:18:01 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-10-22 11:18:01 +0100 |
commit | f142898f529f89c5bd90710db2d0771894b0b33f (patch) | |
tree | d89ec6873034a8d367a91704ba947e9b3ff2c4c2 /synapse | |
parent | Move FTS to delta 25 (diff) | |
download | synapse-f142898f529f89c5bd90710db2d0771894b0b33f.tar.xz |
PEP8
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/schema/delta/25/fts.py | 3 |
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)" ) |