Re: migrations to custom user model - complex project

2014-01-27 Thread Frank Bieniek
Thanks Arnold, for the details. Am 25.01.14 21:22, schrieb Arnold Krille: We did something similar, we switched from djangos own user model + our profile to just using our profile extended by email and password (no username anymore and no openid (yet)). What you need to do depends on whether

Re: migrations to custom user model - complex project

2014-01-25 Thread Arnold Krille
Hi, On Fri, 24 Jan 2014 15:10:44 +0100 Frank Bieniek wrote: > a do have to upgrade an existing > django project, it is an openid provider with around 10k users. > In order to update to django 1.6 I do need to get rid of > the good old AUTH_PROFILE_MODULE and need

migrations to custom user model - complex project

2014-01-24 Thread Frank Bieniek
Hi All, a do have to upgrade an existing django project, it is an openid provider with around 10k users. In order to update to django 1.6 I do need to get rid of the good old AUTH_PROFILE_MODULE and need to switch to CustomUserModel, and I do not want to break existing mysql constraints.