Alternc  latest
Alternc logiel libre pour l'hébergement
0.9.3.1.sql
Go to the documentation of this file.
1 -- we don't store cleartext passwords anymore, we use saslauthd
2 ALTER TABLE `mail_users` DROP `sasl`;
3 
4 use mysql;
5 
6 -- on revient à l'ancienne routine: foo_bar au lieu de foo\_bar car
7 -- mysql a été arrangéUPDATE IGNORE `db` set `Db` = REPLACE(`Db`,'\_','_') WHERE `Db` REGEXP '[^\\]\\\\_'; FLUSH PRIVILEGES;
8 UPDATE IGNORE `db` set `Db` = REPLACE(`Db`,'\_','_') WHERE `Db` REGEXP '[^\\]\\\\_';
9 FLUSH PRIVILEGES;