drop table requests; create table requests ( 'host' VARCHAR(20), 'port' INTEGER, 'ssl' INTEGER, 'meth' VARCHAR(20), 'path' BLOB, 'headers' BLOB, 'query' BLOB, 'body' BLOB, 'respcode' VARCHAR(5), 'resphead' BLOB, 'response' BLOB, 'created' TIMESTAMP ); drop table targets; create table targets ( 'id' INTEGER PRIMARY KEY NOT NULL, 'host' VARCHAR(20), 'port' INTEGER, 'ssl' INTEGER, 'selected' INTEGER ); drop table notes; create table notes ( 'id' INTEGER PRIMARY KEY NOT NULL, 'created' TIMESTAMP, 'host_id' INTEGER, 'ntype' VARCHAR(512), 'data' TEXT );