Constant mz_persist::postgres::SCHEMA

source ·
const SCHEMA: &str = "
CREATE TABLE IF NOT EXISTS consensus (
    shard text NOT NULL,
    sequence_number bigint NOT NULL,
    data bytea NOT NULL,
    PRIMARY KEY(shard, sequence_number)
) WITH (sql_stats_automatic_collection_enabled = false);
";