Wmap database merged, new wmap_generic module, fix website tree display and docs.
git-svn-id: file:///home/svn/framework3/trunk@5740 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
@@ -57,3 +57,28 @@ create table notes (
|
||||
'ntype' VARCHAR(512),
|
||||
'data' TEXT
|
||||
);
|
||||
|
||||
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
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user