Skip to content

Commit deb55f2

Browse files
sirainenslusarz
authored andcommitted
config/imap: Change SQL metadata.attr_value to be TEXT type
VARCHAR(65534) is larger than allowed by MySQL.
1 parent 844aca1 commit deb55f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/core/config/include/imap_extensions.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ for storing the entires.
3838
CREATE TABLE metadata (
3939
username VARCHAR(255) NOT NULL DEFAULT '',
4040
attr_name VARCHAR(255) NOT NULL,
41-
attr_value VARCHAR(65535),
41+
attr_value TEXT,
4242
PRIMARY KEY(username, attr_name)
4343
);
4444
```

0 commit comments

Comments
 (0)