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);\n";
Expand description
CREATE TABLE IF NOT EXISTS solution_set (
    id INTEGER PRIMARY KEY,
    content_addr BLOB NOT NULL UNIQUE
);