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:
smizrahi
2023-07-25 17:22:11 +02:00
parent ec27f7e714
commit 326bc68f4c
13 changed files with 95 additions and 9 deletions

View File

@@ -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
);