summaryrefslogtreecommitdiff
path: root/SQL/postgres.initial.sql
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2007-09-19 06:55:05 +0000
committerthomascube <thomas@roundcube.net>2007-09-19 06:55:05 +0000
commit84d06edb06433c980dc7718188fcdd0799b08c09 (patch)
treecc2efaf45979404a64794ce02c5751b1caba8470 /SQL/postgres.initial.sql
parent4d0413dd899f9407bf44c563924324e56945981f (diff)
IPv6 Compatability
Diffstat (limited to 'SQL/postgres.initial.sql')
-rw-r--r--SQL/postgres.initial.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/SQL/postgres.initial.sql b/SQL/postgres.initial.sql
index bf82b9b5d..356a579fc 100644
--- a/SQL/postgres.initial.sql
+++ b/SQL/postgres.initial.sql
@@ -36,7 +36,7 @@ CREATE TABLE "session" (
sess_id character varying(40) DEFAULT ''::character varying PRIMARY KEY,
created timestamp with time zone DEFAULT now() NOT NULL,
changed timestamp with time zone DEFAULT now() NOT NULL,
- ip character varying(16) NOT NULL,
+ ip character varying(41) NOT NULL,
vars text NOT NULL
);