home / chat

state_groups_pending_deletion

✎ View and edit SQL

This data as json

0 records

CREATE TABLE state_groups_pending_deletion (
    sequence_number INTEGER PRIMARY KEY AUTOINCREMENT,
    state_group BIGINT NOT NULL,
    insertion_ts BIGINT NOT NULL
);
CREATE UNIQUE INDEX state_groups_pending_deletion_state_group ON state_groups_pending_deletion(state_group);
CREATE INDEX state_groups_pending_deletion_insertion_ts ON state_groups_pending_deletion(insertion_ts);
Powered by Datasette · Queries took 13.318ms