essential_node_db_sql::create

Constant SOLUTION

Source
pub const SOLUTION: &str = "CREATE TABLE IF NOT EXISTS solution (\n    id INTEGER PRIMARY KEY,\n    content_hash BLOB NOT NULL UNIQUE\n);\n";
Expand description
CREATE TABLE IF NOT EXISTS solution (
    id INTEGER PRIMARY KEY,
    content_hash BLOB NOT NULL UNIQUE
);