0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00

change mailbox.name to be utf8mb4 too - see #484

This commit is contained in:
David Goodwin 2021-05-07 20:07:07 +01:00
parent eded6a5559
commit b9ca22c918

View File

@ -2027,6 +2027,8 @@ function upgrade_1845()
}
$vacation = table_by_key('vacation');
$mailbox = table_by_key('mailbox');
db_query("alter table $vacation change body body text charset utf8mb4 not null");
db_query("alter table $vacation change subject subject varchar(255) charset utf8mb4 not null");
db_query("alter table $mailbox change name name varchar(255) charset utf8mb4 not null");
}