Don't create event_search index on sqlite

... because the table is virtual
This commit is contained in:
Richard van der Hoff 2017-05-11 12:46:55 +01:00
parent 114f290947
commit 34194aaff7
2 changed files with 11 additions and 3 deletions

View file

@ -216,6 +216,7 @@ class EventsStore(SQLBaseStore):
table="event_search",
columns=["event_id"],
unique=True,
psql_only=True,
)
self._event_persist_queue = _EventPeristenceQueue()