From 06f380a17a2d1808bc6d0e233dc1347925c0b3d4 Mon Sep 17 00:00:00 2001 From: Niklas Meyer <62480600+DerLinkman@users.noreply.github.com> Date: Tue, 22 Mar 2022 13:35:27 +0100 Subject: [PATCH] [DB] Removed empty space behind c_value --- 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 b56b1a964..8e8a63b57 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(4096) NOT NULL", + "c_value" => "VARCHAR(4096) NOT NULL", "c_creationdate" => "INT(11) NOT NULL", "c_lastseen" => "INT(11) NOT NULL" ),