home / chat

un_partial_stated_room_stream

0 rows where room_id = "!MqgjFnNBtuJqdWcdNx:matrix.jamesst.one"

✎ View and edit SQL

This data as json

0 records

CREATE TABLE un_partial_stated_room_stream(
    -- Position in the stream
    stream_id BIGINT PRIMARY KEY NOT NULL,

    -- Which instance wrote this entry.
    instance_name TEXT NOT NULL,

    -- Which room has been un-partial-stated.
    room_id TEXT NOT NULL REFERENCES rooms(room_id) ON DELETE CASCADE
);
CREATE INDEX un_partial_stated_room_stream_room_id ON un_partial_stated_room_stream (room_id);
Powered by Datasette · Queries took 17.69ms