> I cannot simply copy the email to the username because the username must be
> less than 30 characters and, after looking into my database, many email
> addresses go over that.
Note that you can fix that quite easily by putting something like
this
for f in User._meta.fields:
if f.name == "username":
f.max_length=75
somewhere in your code. Easiest in your models.py.
mjl
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.