admin/emails/broken: remove trailing spaces after email addresses
[platal.git] / upgrade / 0.9.14 / 01_auth_user_md5.sql
CommitLineData
ecc734a5 1# Security stuff
0be07aa6 2alter table auth_user_md5 change flags flags set('femme', 'watch') not null;
ecc734a5 3alter table auth_user_md5 add column naissance_ini date not null default '0000-00-00' after smtppass;
4
5# Deprecated stuff
6alter table auth_user_md5 drop column nom_ini_soundex;
7alter table auth_user_md5 drop column prenom_ini_soundex;
8alter table auth_user_md5 drop column appli;
9alter table auth_user_md5 drop column bits;
10
11# Advance search
b536b5ae 12alter table auth_user_md5 add key nationalite(nationalite);
13alter table adresses add key country(country);
14alter table adresses add key region(region);
0be07aa6 15
16# vim:set syntax=mysql: