diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2014-08-13 19:18:55 +0100 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2014-08-13 19:19:15 +0100 |
commit | d05aa651f80b604428c003a13a03c4f6f61c317d (patch) | |
tree | 655502cdd01fe89c0ab56a3b0d27cc9faf95b2e9 /synapse/storage/schema | |
parent | Allow advancing the MockClock's time (diff) | |
download | synapse-d05aa651f80b604428c003a13a03c4f6f61c317d.tar.xz |
An initial hack at storing presence state-change mtimes in database and presenting age durations to clients/federation events
Diffstat (limited to 'synapse/storage/schema')
-rw-r--r-- | synapse/storage/schema/presence.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/storage/schema/presence.sql b/synapse/storage/schema/presence.sql index b22e3ba863..b1081d3aab 100644 --- a/synapse/storage/schema/presence.sql +++ b/synapse/storage/schema/presence.sql @@ -16,6 +16,7 @@ CREATE TABLE IF NOT EXISTS presence( user_id INTEGER NOT NULL, state INTEGER, status_msg TEXT, + mtime INTEGER, -- miliseconds since last state change FOREIGN KEY(user_id) REFERENCES users(id) ); |