1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/storage/schema/delta/30/presence_stream.sql b/synapse/storage/schema/delta/30/presence_stream.sql
index 14f5e3d30a..606bbb037d 100644
--- a/synapse/storage/schema/delta/30/presence_stream.sql
+++ b/synapse/storage/schema/delta/30/presence_stream.sql
@@ -18,9 +18,9 @@
stream_id BIGINT,
user_id TEXT,
state TEXT,
- last_active BIGINT,
- last_federation_update BIGINT,
- last_user_sync BIGINT,
+ last_active_ts BIGINT,
+ last_federation_update_ts BIGINT,
+ last_user_sync_ts BIGINT,
status_msg TEXT,
currently_active BOOLEAN
);
|