From ff546b3c0a4b3040cdcd813bad265caf0b2bda0f Mon Sep 17 00:00:00 2001 From: et <> Date: Fri, 17 Oct 2008 13:40:11 +0000 Subject: [PATCH] added reports table git-svn-id: file:///home/svn/framework3/trunk@5763 4d416f70-5f16-0410-b530-b9f4589650da --- data/sql/sqlite.sql | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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 +); + +