diff --git a/data/sql/sqlite.sql b/data/sql/sqlite.sql index 359be8c507..0da6417e21 100644 --- a/data/sql/sqlite.sql +++ b/data/sql/sqlite.sql @@ -82,3 +82,17 @@ create table targets ( 'ssl' INTEGER, 'selected' INTEGER ); + +drop table reports; +create table reports ( +'id' INTEGER PRIMARY KEY NOT NULL, +'target_id' INTEGER, +'entity' VARCHAR(50), +'type' VARCHAR(50), +'value' BLOB, +'notes' VARCHAR, +'source' VARCHAR, +'created' TIMESTAMP +); + +