essential_node_db_sql::create

Constant CONTRACT_PROGRESS

source
pub const CONTRACT_PROGRESS: &str = "CREATE TABLE IF NOT EXISTS contract_progress (\n    id INTEGER PRIMARY KEY,\n    l2_block_number INTEGER NOT NULL,\n    content_hash BLOB NOT NULL\n);\n";
Expand description
CREATE TABLE IF NOT EXISTS contract_progress (
    id INTEGER PRIMARY KEY,
    l2_block_number INTEGER NOT NULL,
    content_hash BLOB NOT NULL
);