backend/generate/database/cassandra/2026010611150002_chat_messa...

9 lines
211 B
MySQL
Raw Normal View History

2026-01-06 07:15:18 +00:00
CREATE TABLE message_dedup (
room_id uuid,
uid text,
content_md5 text,
bucket_sec bigint,
PRIMARY KEY ((room_id, uid), bucket_sec, content_md5)
) WITH default_time_to_live = 2;