userpref value size increased to 1024 to store all the default languages of the sauserspref roundcube plugin.

This commit is contained in:
Andrea Dell'Amico 2020-04-05 18:18:42 +02:00
parent c78b5f4fdc
commit 10adbd73d5
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ CREATE TABLE userpref (
prefid bigserial NOT NULL unique primary key, prefid bigserial NOT NULL unique primary key,
username varchar(100) NOT NULL, username varchar(100) NOT NULL,
preference varchar(50) NOT NULL, preference varchar(50) NOT NULL,
value varchar(100) NOT NULL value varchar(1024) NOT NULL
); );
CREATE INDEX userpref_username_idx ON userpref(username); CREATE INDEX userpref_username_idx ON userpref(username);
CREATE TABLE awl ( CREATE TABLE awl (