summary refs log tree commit diff
path: root/synapse/storage/schema/delta/52 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move storage classes into a main "data store".Erik Johnston2019-10-213-108/+0
| | | | | This is in preparation for having multiple data stores that offer different functionality, e.g. splitting out state or event storage.
* Merge remote-tracking branch 'origin/develop' into ↵David Baker2018-11-092-0/+55
|\ | | | | | | dbkr/e2e_backup_versions_are_numbers
| * Add unique indexes to a couple of tablesRichard van der Hoff2018-11-021-0/+36
| | | | | | | | | | The indexes on device_lists_remote_extremeties can be unique, and they therefore should, to ensure that the db remains consistent.
| * Add state_group index to event_to_state_groupsErik Johnston2018-10-041-0/+19
| | | | | This is needed to efficiently check for unreferenced state groups during purge.
* Try & make it work on postgresDavid Baker2018-10-301-2/+2
|
* Make e2e backup versions numeric in the DBDavid Baker2018-10-291-0/+53
We were doing max(version) which does not do what we wanted on a column of type TEXT.