summaryrefslogtreecommitdiff
path: root/roundcubemail/SQL/postgres.initial.sql
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-11-22 08:36:29 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-11-22 08:36:29 +0000
commit48c5e37546f20ada47924526b3ea011b6d2d5e8e (patch)
tree741443e016fa74f670b0745c47cba12f4a1ecc40 /roundcubemail/SQL/postgres.initial.sql
parent1a6323f0a58976db68ee3e8eacfb04e93c335ca2 (diff)
- Fixed bug where session ID's length was limited to 40 characters. Since PHP5.3 it's possible
to set session.hash_function to any hash algorithm that would produce strings up to 128 characters long (#1488196) git-svn-id: https://svn.roundcube.net/trunk@5460 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/SQL/postgres.initial.sql')
-rw-r--r--roundcubemail/SQL/postgres.initial.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/SQL/postgres.initial.sql b/roundcubemail/SQL/postgres.initial.sql
index 06ecad4eb..3710dac4a 100644
--- a/roundcubemail/SQL/postgres.initial.sql
+++ b/roundcubemail/SQL/postgres.initial.sql
@@ -37,7 +37,7 @@ CREATE INDEX users_alias_id_idx ON users (alias);
--
CREATE TABLE "session" (
- sess_id varchar(40) DEFAULT '' PRIMARY KEY,
+ sess_id varchar(128) DEFAULT '' PRIMARY KEY,
created timestamp with time zone DEFAULT now() NOT NULL,
changed timestamp with time zone DEFAULT now() NOT NULL,
ip varchar(41) NOT NULL,