essential_node_db_sql::create

Constant DEC_VAR

source
pub const DEC_VAR: &str = "CREATE TABLE IF NOT EXISTS dec_var (\n    id INTEGER PRIMARY KEY,\n    solution_id INTEGER NOT NULL,\n    data_index INTEGER NOT NULL,\n    dec_var_index INTEGER NOT NULL,\n    value BLOB NOT NULL\n);";
Expand description
CREATE TABLE IF NOT EXISTS dec_var (
    id INTEGER PRIMARY KEY,
    solution_id INTEGER NOT NULL,
    data_index INTEGER NOT NULL,
    dec_var_index INTEGER NOT NULL,
    value BLOB NOT NULL
);