essential_node_db_sql::create

Constant MUTATION

Source
pub const MUTATION: &str = "CREATE TABLE IF NOT EXISTS mutation (\n    id INTEGER PRIMARY KEY,\n    data_id INTEGER NOT NULL,\n    mutation_index INTEGER NOT NULL,\n    key BLOB NOT NULL,\n    value BLOB NOT NULL,\n    FOREIGN KEY (data_id) REFERENCES solution_data (id)\n);\n";
Expand description
CREATE TABLE IF NOT EXISTS mutation (
    id INTEGER PRIMARY KEY,
    data_id INTEGER NOT NULL,
    mutation_index INTEGER NOT NULL,
    key BLOB NOT NULL,
    value BLOB NOT NULL,
    FOREIGN KEY (data_id) REFERENCES solution_data (id)
);