device_lists_changes_converted_stream_position
1 row
This data as json, CSV (advanced)
| Link | rowid ▼ | Lock | stream_id | room_id | instance_name |
|---|---|---|---|---|---|
| 1 | 1 | X | 32 | !zmsygXhOAWGjoosiDX:matrix.jamesst.one | master |
Advanced export
JSON shape: default, array, newline-delimited
CREATE TABLE device_lists_changes_converted_stream_position(
Lock CHAR(1) NOT NULL DEFAULT 'X' UNIQUE, -- Makes sure this table only has one row.
-- The (stream id, room id) of the last row in `device_lists_changes_in_room` that
-- has been converted to `device_lists_outbound_pokes`. Rows with a strictly larger
-- (stream id, room id) where `converted_to_destinations` is `FALSE` have not been
-- converted.
stream_id BIGINT NOT NULL,
-- `room_id` may be an empty string, which compares less than all valid room IDs.
room_id TEXT NOT NULL, instance_name TEXT,
CHECK (Lock='X')
);