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