b001e4684d
git-svn-id: file:///home/svn/framework3/trunk@5675 4d416f70-5f16-0410-b530-b9f4589650da
35 lines
557 B
SQL
35 lines
557 B
SQL
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
|
|
);
|