diff options
author | Mark Haines <mark.haines@matrix.org> | 2014-10-17 17:31:48 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2014-10-17 17:31:48 +0100 |
commit | 82c582076782f180c9f69a523953c3a36b57b3ac (patch) | |
tree | 00a79bdfe56a139cbe427ecc28bad852bdc3663d /synapse/storage/pdu.py | |
parent | SPEC-7: Rename 'ts' to 'origin_server_ts' (diff) | |
download | synapse-82c582076782f180c9f69a523953c3a36b57b3ac.tar.xz |
keep 'origin_server_ts' as 'ts' in the database to avoid needlessly updating schema
Diffstat (limited to 'synapse/storage/pdu.py')
-rw-r--r-- | synapse/storage/pdu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/pdu.py b/synapse/storage/pdu.py index 61ea979b8a..d70467dcd6 100644 --- a/synapse/storage/pdu.py +++ b/synapse/storage/pdu.py @@ -789,7 +789,7 @@ class PdusTable(Table): "origin", "context", "pdu_type", - "origin_server_ts", + "ts", "depth", "is_state", "content_json", |