0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-10 20:02:21 +02:00

Older versions of SQLite don't like IF NOT EXISTS in virtual tables

This commit is contained in:
Erik Johnston 2015-12-02 13:29:14 +00:00
parent 58d0927767
commit b2def42bfd

View file

@ -38,7 +38,7 @@ CREATE INDEX event_search_ev_ridx ON event_search(room_id);
SQLITE_TABLE = (
"CREATE VIRTUAL TABLE IF NOT EXISTS event_search"
"CREATE VIRTUAL TABLE event_search"
" USING fts4 ( event_id, room_id, sender, key, value )"
)