summary refs log tree commit diff
path: root/synapse/storage/schema (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge changes from developMark Haines2015-01-292-0/+92
|\
| * Move pushers delta to v12 and bump schema versionDavid Baker2015-01-281-0/+0
| |
| * Oops: second part of commit dc938606David Baker2015-01-222-0/+26
| |
| * add instance_handles to pushers so we have a way to refer to them even if ↵David Baker2015-01-202-0/+2
| | | | | | | | the push token changes.
| * Require device language when adding a pusher.David Baker2015-01-162-0/+2
| | | | | | | | | | Because this seems like it might be useful to do sooner rather than later.
| * Honour the 'rejected' return from push gatewaysDavid Baker2015-01-132-0/+2
| | | | | | | | | | | | | | Add a timestamp to push tokens so we know the last time they we got them from the device. Send it to the push gateways so it can determine whether its failure is more recent than the token. Stop and remove pushers that have been rejected.
| * Merge branch 'develop' into pushersDavid Baker2015-01-1320-15/+88
| |\
| * \ Merge branch 'develop' into pushersDavid Baker2014-12-185-1/+168
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: synapse/api/errors.py synapse/server.py synapse/storage/__init__.py
| * | | schema version is now 10David Baker2014-12-181-0/+0
| | | |
| * | | Rename the pusher SQL delta to v9 which the next free oneDavid Baker2014-12-181-0/+0
| | | |
| * | | after a few rethinks, a working implementation of pushers.David Baker2014-12-182-4/+2
| | | |
| * | | Update to app_id / app_instance_id (partially) and mangle to be PEP8 compliant.David Baker2014-12-032-4/+6
| | | |
| * | | Merge branch 'develop' into pushersDavid Baker2014-12-022-1/+35
| |\ \ \
| * | | | More work on pushers. Attempt to do HTTP pokes. Not sure if the actual HTTP ↵David Baker2014-11-212-0/+4
| | | | | | | | | | | | | | | | | | | | pokes work or not yet but the retry semantics are pretty good.
| * | | | Start creating a module to do generic notifications (just prints them to ↵David Baker2014-11-192-0/+56
| | | | | | | | | | | | | | | | | | | | stdout currently!)
* | | | | Move bump schema deltaMark Haines2015-01-291-0/+0
| | | | |
* | | | | Also edit the filter column on the delta SQLKegan Dougal2015-01-291-1/+1
| | | | |
* | | | | s/definition/filter_json/ since definition is now used to mean a component ↵Kegan Dougal2015-01-281-1/+1
| | | | | | | | | | | | | | | | | | | | of the filter, rather than the complete json
* | | | | Created schema deltaPaul "LeoNerd" Evans2015-01-271-0/+24
| | | | |
* | | | | Initial stab at real SQL storage implementation of user filter definitionsPaul "LeoNerd" Evans2015-01-271-0/+24
| |_|_|/ |/| | |
* | | | Add delta and bump DB versionErik Johnston2015-01-061-0/+16
| | | |
* | | | Add index on transaction_id to sent_transcationsErik Johnston2015-01-061-0/+1
| | | |
* | | | Update copyright noticesMark Haines2015-01-0619-15/+71
| |_|/ |/| |
* | | Fix upgrade script to run all the missing deltas.Erik Johnston2014-12-161-1/+57
| | |
* | | Persist internal_metadataErik Johnston2014-12-161-0/+1
| | |
* | | Merge branch 'develop' of github.com:matrix-org/synapse into events_refactorErik Johnston2014-12-111-0/+68
|\ \ \ | | | | | | | | | | | | | | | | Conflicts: setup.py
| * \ \ Merge branch 'develop' into media_repositoryMark Haines2014-12-102-0/+29
| |\ \ \
| * \ \ \ Merge branch 'develop' into media_repositoryMark Haines2014-12-102-1/+35
| |\ \ \ \ | | | |_|/ | | |/| |
| * | | | Add a method field to thumbnail storageMark Haines2014-12-051-1/+3
| | | | |
| * | | | Write the upload portion of version 1 of the media repositoryMark Haines2014-12-021-0/+66
| | |_|/ | |/| |
* | | | Fix bug where we clobbered old state group valuesErik Johnston2014-12-101-1/+2
| | | |
* | | | Fix bug when uploading state with empty state_keyErik Johnston2014-12-101-0/+2
| | | |
* | | | Merge branch 'develop' of github.com:matrix-org/synapse into events_refactorErik Johnston2014-12-102-0/+29
|\ \ \ \ | | |_|/ | |/| |
| * | | track replication destination health, and perform exponential back-off when ↵Matthew Hodgson2014-12-072-0/+29
| | |/ | |/| | | | | | | sending transactions. does *not* yet retry transactions, but drops them on the floor if waiting for a server to recover.
* / | Store full JSON of events in dbErik Johnston2014-12-011-0/+10
|/ /
* | Add update delta for schema changeErik Johnston2014-11-261-0/+34
| |
* | Update schema to support multiple signaturesErik Johnston2014-11-261-1/+1
|/
* Store all signatures on events rather than just dropping themErik Johnston2014-11-121-3/+3
|
* Add indices to state group tablesErik Johnston2014-11-121-0/+13
|
* Tidy up some of the unused sql tablesErik Johnston2014-11-101-62/+6
|
* Start implementing auth chainsErik Johnston2014-11-071-0/+10
|
* Implement new replace_state and changed prev_stateErik Johnston2014-11-061-12/+28
| | | | | `prev_state` is now a list of previous state ids, similiar to prev_events. `replace_state` now points to what we think was replaced.
* Remove unused sql file.Erik Johnston2014-10-311-31/+0
|
* Remove more references to dead PDU tablesErik Johnston2014-10-311-66/+0
|
* Remove PDU tables.Erik Johnston2014-10-311-106/+0
|
* Start filling out and using new events tablesErik Johnston2014-10-291-5/+3
|
* Begin implementing all the PDU storage stuff in Events landErik Johnston2014-10-283-0/+117
|
* Merge branch 'event_signing' of github.com:matrix-org/synapse into ↵Erik Johnston2014-10-271-0/+66
|\ | | | | | | | | | | | | federation_authorization Conflicts: synapse/storage/__init__.py
| * Merge branch 'develop' into event_signingMark Haines2014-10-271-0/+31
| |\
| * | Hash the same content covered by the signature when referencing previous ↵Mark Haines2014-10-171-2/+16
| | | | | | | | | | | | PDUs rather than reusing the PDU content hashes
| * | Include hashes of previous pdus when referencing themMark Haines2014-10-161-0/+16
| | |
| * | persist hashes and origin signatures for PDUsMark Haines2014-10-151-2/+2
| | |
| * | Storage for pdu signaturesMark Haines2014-10-141-0/+36
| | |
* | | Merge branch 'develop' of github.com:matrix-org/synapse into ↵Erik Johnston2014-10-271-0/+31
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | federation_authorization Conflicts: synapse/federation/transport.py synapse/handlers/message.py
| * | Bump database version number.Erik Johnston2014-10-171-0/+31
| | |
| * | keep 'origin_server_ts' as 'ts' in the database to avoid needlessly updating ↵Mark Haines2014-10-172-3/+3
| | | | | | | | | | | | schema
| * | SPEC-7: Rename 'ts' to 'origin_server_ts'Mark Haines2014-10-172-3/+3
| |/
* | Begin making auth use event.old_state_eventsErik Johnston2014-10-151-1/+1
| |
* | Begin implementing state groups.Erik Johnston2014-10-141-0/+33
|/
* Merge branch 'develop' into server2server_signingMark Haines2014-09-305-1/+52
|\ | | | | | | | | | | Conflicts: synapse/storage/__init__.py tests/rest/test_presence.py
| * SYN-48: Implement WHOIS rest servletErik Johnston2014-09-292-2/+4
| |
| * SYN-48: Track User-Agents as well as IPs for client devices.Erik Johnston2014-09-292-2/+6
| |
| * Track the IP users connect with. Add an admin column to users table.Erik Johnston2014-09-262-0/+24
| |
| * Rename deletions to redactionsErik Johnston2014-09-244-13/+15
| |
| * Add v4 deltas to current sql.Erik Johnston2014-09-242-1/+9
| |
| * SYN-12: Implement auth for deletion by adding a 'delete_level' on the ops ↵Erik Johnston2014-09-231-0/+4
| | | | | | | | | | | | levels event SYN-12 # comment Auth has been added.
| * Add m.room.deletion. If an event is deleted it will be returned to clients ↵Erik Johnston2014-09-231-2/+4
| | | | | | | | 'pruned', i.e. all client specified keys will be removed.
| * Add a deletions tableErik Johnston2014-09-221-0/+5
| |
* | SYN-75 Verify signatures on server to server transactionsMark Haines2014-09-301-6/+7
|/
* Generate m.room.aliases event when the HS creates a room aliasErik Johnston2014-09-051-0/+27
|
* fix the copyright holder from matrix.org to OpenMarket Ltd, as matrix.org ↵Matthew Hodgson2014-09-0310-10/+10
| | | | hasn't been incorporated in time for launch.
* Store SQL DDL deltas as well; attempt to upgrade the database on startup if ↵Paul "LeoNerd" Evans2014-09-031-0/+168
| | | | it's too old
* Add copyright notices and fix pyflakes errorsMark Haines2014-09-031-0/+15
|
* Merge branch 'develop' of github.com:matrix-org/synapse into room_configErik Johnston2014-09-011-0/+30
|\
| * Add store for server certificates and keysMark Haines2014-08-281-0/+30
| |
* | Add all the necessary checks to make banning work.Erik Johnston2014-09-011-1/+1
| |
* | Add beginnings of ban support.Erik Johnston2014-09-011-0/+11
| |
* | Implement power level lists, default power levels and ↵Erik Johnston2014-09-011-0/+20
| | | | | | | | send_evnet_level/add_state_level events.
* | Start adding storage for new events.Erik Johnston2014-08-291-0/+32
|/
* Add a unique constraint on the room hosts tableErik Johnston2014-08-241-1/+2
|
* Add indices to schemaErik Johnston2014-08-221-0/+20
|
* Don't return state event outlier's when paginating.Erik Johnston2014-08-221-0/+1
|
* Change the way pagination works to support out of order events.Erik Johnston2014-08-191-1/+1
|
* SQL doesn't allow AUTOINCREMENT on non PRIMARY KEY columns.Erik Johnston2014-08-181-1/+1
|
* Add two different columns for ordering the events table, one which can be ↵Erik Johnston2014-08-181-5/+8
| | | | used for pagination and one which can be as tokens for notifying clients. Also add a 'processed' field which is currently always set to True
* Start chagning the events stream to work with the new DB schemaErik Johnston2014-08-151-1/+4
|
* Reimplement the get public rooms api to work with new DB schemaErik Johnston2014-08-151-0/+12
|
* Fix up typos and correct sql queriesErik Johnston2014-08-141-2/+2
|
* Fix up RoomMemberStore to work with the new schema.Erik Johnston2014-08-141-1/+5
|
* Merge branch 'master' of github.com:matrix-org/synapse into sql_refactorErik Johnston2014-08-141-0/+1
|\ | | | | | | | | Conflicts: synapse/storage/_base.py
| * An initial hack at storing presence state-change mtimes in database and ↵Paul "LeoNerd" Evans2014-08-131-0/+1
| | | | | | | | presenting age durations to clients/federation events
* | Make feedback table also store sender.Erik Johnston2014-08-131-1/+2
| |
* | Initial stab at refactoring the SQL tables, including rejigging some of the ↵Erik Johnston2014-08-131-6/+5
| | | | | | | | storage layer.
* | Convert im schema to a 'one' table structureErik Johnston2014-08-131-26/+31
|/
* Reference Matrix Home Servermatrix.org2014-08-128-0/+352