state_groups_pending_deletion
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);