1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Contribution for logging Apache Web stats to PostgreSQL

From: Terry Mackintosh <terry@terrym.com>
This commit is contained in:
Marc G. Fournier
1998-03-22 02:03:00 +00:00
parent d15544c9ce
commit 85fe4cc17d
3 changed files with 76 additions and 0 deletions

View File

@ -0,0 +1,3 @@
drop table access;
CREATE TABLE access (host char(200), ident char(200), authuser char(200), accdate datetime, request char(500), ttime int2, status int2, bytes int4) archive = none;
grant all on access to nobody;