1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-01-04 03:48:28 +02:00

[DB] Removed empty space behind c_value

This commit is contained in:
Niklas Meyer 2022-03-22 13:35:27 +01:00 committed by DerLinkman
parent 67882414e1
commit 06f380a17a

View File

@ -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"
),