Merge pull request 'userpref value size increased to 1024 to store all the default languages of the sauserspref roundcube plugin.' (#2) from adellam/ansible-role-spamassassin:master into master

This commit is contained in:
Andrea Dell'Amico 2020-04-05 18:19:45 +02:00
commit 1598bfeb45
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,
username varchar(100) 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 TABLE awl (