const SCHEMA: &str = "
CREATE TABLE consensus (
    shard text NOT NULL,
    sequence_number bigint NOT NULL,
    data blob NOT NULL,
    PRIMARY KEY(shard, sequence_number)
);";