Moving to GitHub.
[platal.git] / 0.9.4 / 30_auth_user_quick.sql
1 alter table auth_user_quick add column foo timestamp after user_id;
2
3 alter table auth_user_quick add column emails_alias_pub enum('public', 'private') not null default 'private';
4 alter table auth_user_quick add column profile_from_ax INT(1) not null default 0;
5 alter table auth_user_quick add column core_mail_fmt enum('html', 'texte') not null default 'html';
6
7 alter table auth_user_quick add column profile_nick varchar(64) not null;
8 alter table auth_user_quick add index(profile_nick);
9
10 alter table auth_user_quick add column core_rss_hash char(32) not null default '';