mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-29 07:05:26 +00:00
fix(preferences): Fix the issue when signature is too long and preferences are not saved. Note that MySQL profile table should be updated with a migration script
This commit is contained in:
@@ -22,6 +22,7 @@ endif
|
||||
MainUI_RESOURCE_FILES += \
|
||||
product.plist \
|
||||
SOGoProfile.sql \
|
||||
SOGoProfile-mysql.sql \
|
||||
SOGoProfile-oracle.sql \
|
||||
OCSFolderInfo.sql \
|
||||
OCSFolderInfo-oracle.sql \
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
--
|
||||
-- (C) 2004-2005 SKYRIX Software AG
|
||||
-- (C) 2006-2007 Inverse inc.
|
||||
-- (C) 2023 Alinto
|
||||
--
|
||||
|
||||
CREATE TABLE @{tableName} (
|
||||
c_uid VARCHAR(255) NOT NULL PRIMARY KEY,
|
||||
c_defaults MEDIUMTEXT,
|
||||
c_settings TEXT
|
||||
);
|
||||
Reference in New Issue
Block a user