summaryrefslogtreecommitdiff
path: root/contrib/tips
diff options
context:
space:
mode:
authorTom Lane2002-05-03 04:11:08 +0000
committerTom Lane2002-05-03 04:11:08 +0000
commit8338cc03a8915e28024981d09193612ec4a83819 (patch)
tree8845f3a7695af8370cb60c2461d39e70be667584 /contrib/tips
parent53cedcac22bca29bb6ac766b04d5dd08db77ac03 (diff)
Remove the last traces of datatypes datetime and timespan.
Diffstat (limited to 'contrib/tips')
-rw-r--r--contrib/tips/README.apachelog2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/tips/README.apachelog b/contrib/tips/README.apachelog
index 8e9096241e..964c6ec1a3 100644
--- a/contrib/tips/README.apachelog
+++ b/contrib/tips/README.apachelog
@@ -69,7 +69,7 @@ not as a finished idea.
--- apachelog.sql : ---
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;
+CREATE TABLE access (host char(200), ident char(200), authuser char(200), accdate timestamp, request char(500), ttime int2, status int2, bytes int4) archive = none;
grant all on access to nobody;
--- httpconf.txt: ---