merge browser_autopwn back into trunk. This changes the database schema slightly, so make sure to db_destroy and db_create before using the database features.

git-svn-id: file:///home/svn/framework3/trunk@6873 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
James Lee
2009-07-22 20:14:35 +00:00
parent 750a432fd0
commit 739207bf4a
25 changed files with 1320 additions and 624 deletions
+10
View File
@@ -17,6 +17,16 @@ os_lang VARCHAR(255),
arch VARCHAR(255)
);
drop table clients;
create table clients (
id INTEGER PRIMARY KEY NOT NULL,
host_id INTEGER,
created TIMESTAMP,
ua_string VARCHAR(1024) NOT NULL,
ua_name VARCHAR(64),
ua_ver VARCHAR(32)
);
drop table services;
create table services (