summaryrefslogtreecommitdiffstatsabout
path: root/access_log.sql
diff options
context:
space:
mode:
Diffstat (limited to 'access_log.sql')
-rw-r--r--access_log.sql10
1 files changed, 5 insertions, 5 deletions
diff --git a/access_log.sql b/access_log.sql
index 46d5a6e..a667494 100644
--- a/access_log.sql
+++ b/access_log.sql
@@ -10,16 +10,16 @@ create table access_log (
10 remote_user varchar(50) not null, 10 remote_user varchar(50) not null,
11 request_duration smallint not null, 11 request_duration smallint not null,
12 request_line varchar(255), 12 request_line varchar(255),
13 request_method not null, 13 request_method varchar(6) not null,
14 request_protocol not null, 14 request_protocol varchar(10) not null,
15 request_time char(28), 15 request_time char(28),
16 request_uri varchar(50) not null, 16 request_uri varchar(50) not null,
17 server_port smallint unsigned, 17 server_port smallint unsigned,
18 ssl_cipher varchar(25), 18 ssl_cipher varchar(25),
19 ssl_keysize smallint 19 ssl_keysize smallint unsigned,
20 ssl_maxkeysize smallint, 20 ssl_maxkeysize smallint unsigned,
21 status smallint not null, 21 status smallint not null,
22 time_stamp int unsigned not null, 22 time_stamp int unsigned not null,
23 virtual_host varchar(50) not null, 23 virtual_host varchar(50) not null
24) 24)
25 25