summary refs log tree commit diff
path: root/synapse/storage/schema/delta/56 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'develop' of github.com:matrix-org/synapse into ↵Erik Johnston2019-09-051-0/+152
|\ | | | | | | erikj/censor_redactions
| * Fix and refactor room and user stats (#5971)Erik Johnston2019-09-041-0/+152
| | | | | | Previously the stats were not being correctly populated.
* | Censor redactions in DB after a monthErik Johnston2019-08-301-0/+17
|/
* Propagate opentracing contexts through EDUs (#5852)Jorik Schellekens2019-08-221-0/+20
| | | | | Propagate opentracing contexts through EDUs Co-Authored-By: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
* Add missing index on users_in_public_rooms. (#5894)Richard van der Hoff2019-08-221-0/+17
|
* Drop some unused tables. (#5893)Richard van der Hoff2019-08-211-0/+20
| | | These tables are never used, so we may as well drop them.
* add the version field to the index for e2e_room_keysHubert Chathi2019-08-141-0/+18
|
* Don't recreate columnErik Johnston2019-07-302-1/+22
|
* Fix current_state_events membership background update.Erik Johnston2019-07-301-0/+0
| | | | | | Turns out not all rooms are in `rooms`, so lets fetch the room list from `current_state_events`. We move the delta file to force it to be run again.
* Remove lost commentErik Johnston2019-07-291-7/+0
|
* Add function to get all forgotten rooms for userErik Johnston2019-07-241-0/+25
| | | | | | This will allow us to efficiently filter out rooms that have been forgotten in other queries without having to join against the `room_memberships` table.
* Update comment for new columnErik Johnston2019-07-191-0/+3
|
* Add background update for current_state_events.membership columnErik Johnston2019-07-181-0/+3
|
* Add membership column to current_state_events table.Erik Johnston2019-07-181-0/+19
It turns out that doing a join is surprisingly expensive for the DB to do when room_membership table is larger than the disk cache.