On 16/11/06, James Bennett <[EMAIL PROTECTED]> wrote:
>
> On 11/15/06, Matthew Flanagan <[EMAIL PROTECTED]> wrote:
> > You must be missing something:
> >
> > >>> from django.contrib.auth.models import User
> > >>> u = User(username='foo', password='bar')
> > >>> u.save()
>
> OK, I think we're both misunderstanding here.
>
> What I'm saying is that doing this:
>
> u = User(username='foo', password='bar')
> u.save()
>
> *should* be throwing errors, because you have to supply values for all
> the required fields. The fact that the model defines some default
> values doesn't actually mean you can leave those out -- default values
> are *only* used when displaying a form to the user, they're not
> "auto-filled" by Django in other cases.
>
> Which is why I suggested using 'User.objects.create_user', which
> *will* work with only three arguments (username, password and email
> address) and will make sure all the other required fields are filled
> in.

I disagree that default values are only used in forms. Look at this
part of the error message:

INSERT INTO "auth_user"
("username","first_name","last_name","email","password","is_staff","is_active","is_superuser","last_login","date_joined")
VALUES ('foo','','','','bar',False,True,False,2006-11-16,2006-11-16)

The default values are being filled in for every field, required or not.

>
>
> --
> "May the forces of evil become confused on the way to your house."
>   -- George Carlin
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to