From 2b149fb8ea3ecd3a7293bc70cb0df5972fc74495 Mon Sep 17 00:00:00 2001 From: Niklas Meyer <62480600+DerLinkman@users.noreply.github.com> Date: Fri, 11 Mar 2022 17:54:18 +0100 Subject: [PATCH] [DB] Update schema for longer passwords in sogo --- data/web/inc/init_db.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/web/inc/init_db.inc.php b/data/web/inc/init_db.inc.php index 3cab461e..666270a4 100644 --- a/data/web/inc/init_db.inc.php +++ b/data/web/inc/init_db.inc.php @@ -864,7 +864,7 @@ function init_db_schema() { "sogo_sessions_folder" => array( "cols" => array( "c_id" => "VARCHAR(255) NOT NULL", - "c_value" => "VARCHAR(255) NOT NULL", + "c_value" => "VARCHAR(4096) NOT NULL", "c_creationdate" => "INT(11) NOT NULL", "c_lastseen" => "INT(11) NOT NULL" ),