10 lines
309 B
MySQL
10 lines
309 B
MySQL
|
-- we don't store cleartext passwords anymore, we use saslauthd
|
|||
|
ALTER TABLE `mail_users` DROP `sasl`;
|
|||
|
|
|||
|
use mysql;
|
|||
|
|
|||
|
-- on revient <20> l'ancienne routine: foo_bar au lieu de foo\_bar car
|
|||
|
-- mysql a <20>t<EFBFBD> arrang<6E>
|
|||
|
UPDATE IGNORE `db` set `Db` = REPLACE(`Db`,'\_','_') WHERE `Db` REGEXP '[^\\]\\\\_';
|
|||
|
FLUSH PRIVILEGES;
|