diff options
author | Christopher Powell | 2001-11-28 05:26:53 +0000 |
---|---|---|
committer | Christopher Powell | 2001-11-28 05:26:53 +0000 |
commit | 92d85f793b1a41bbbde1811004ae2708a47a44aa (patch) | |
tree | 69ecadaf47ae83197b8c92ff3f8b7c2002b15b19 /access_log.sql |
Initial revision1.09
Diffstat (limited to 'access_log.sql')
-rw-r--r-- | access_log.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/access_log.sql b/access_log.sql new file mode 100644 index 0000000..c38cb50 --- /dev/null +++ b/access_log.sql | |||
@@ -0,0 +1,13 @@ | |||
1 | create table access_log ( | ||
2 | remote_host varchar(50) not null, | ||
3 | remote_user varchar(50) not null, | ||
4 | request_uri varchar(50) not null, | ||
5 | request_duration smallint not null, | ||
6 | virtual_host varchar(50) not null, | ||
7 | time_stamp int unsigned not null, | ||
8 | status smallint not null, | ||
9 | bytes_sent int not null, | ||
10 | referer varchar(255) not null, | ||
11 | agent varchar(255) not null | ||
12 | ) | ||
13 | |||