added reports table

git-svn-id: file:///home/svn/framework3/trunk@5763 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
et
2008-10-17 13:40:11 +00:00
parent 2e297596b0
commit ff546b3c0a
+14
View File
@@ -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
);