From b16f832a89a2aced73eb0ea2e1825e9a47a8b42c Mon Sep 17 00:00:00 2001 From: Olivier 'reivilibre Date: Fri, 31 Jul 2026 15:48:06 +0100 Subject: [PATCH] Schema comment tweak (cosmetic) --- synapse/storage/schema/main/delta/94/07_profile_updates.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/synapse/storage/schema/main/delta/94/07_profile_updates.sql b/synapse/storage/schema/main/delta/94/07_profile_updates.sql index 65f82e05f8..63edca4d58 100644 --- a/synapse/storage/schema/main/delta/94/07_profile_updates.sql +++ b/synapse/storage/schema/main/delta/94/07_profile_updates.sql @@ -35,7 +35,7 @@ CREATE TABLE IF NOT EXISTS profile_updates ( -- at once. affected_fields JSONB NULL, - -- Unix timestamp for debugging purposes + -- Unix timestamp (milliseconds) for debugging purposes inserted_ts BIGINT NOT NULL ); @@ -54,7 +54,7 @@ CREATE TABLE IF NOT EXISTS profile_updates_per_user ( -- The full user ID of the local user that should receive the profile update. user_id TEXT NOT NULL, - -- Unix timestamp. Used to determine when to cull rows (to prevent the table + -- Unix timestamp (milliseconds). Used to determine when to prune rows (to prevent the table -- from growing indefinitely). inserted_ts BIGINT NOT NULL );