Constant MUTATION

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