SOLUTION_SET

Constant SOLUTION_SET 

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