Constant PRED_DATA

Source
pub const PRED_DATA: &str = "CREATE TABLE IF NOT EXISTS pred_data (\n    id INTEGER PRIMARY KEY,\n    solution_id INTEGER NOT NULL,\n    pred_data_index INTEGER NOT NULL,\n    value BLOB NOT NULL,\n    FOREIGN KEY (solution_id) REFERENCES solution (id)\n);\n";
Expand description
CREATE TABLE IF NOT EXISTS pred_data (
    id INTEGER PRIMARY KEY,
    solution_id INTEGER NOT NULL,
    pred_data_index INTEGER NOT NULL,
    value BLOB NOT NULL,
    FOREIGN KEY (solution_id) REFERENCES solution (id)
);