Hello,
I don't think the issue is fixed. I am trying to use a UUID primary key. Per https://code.djangoproject.com/ticket/12235, I've marked my field as the autofield in contribute_to_class. However, now when I try to save a new instance, django is trying to insert an integer into my uuid because it thinks it is an autofield. This causes a ValueError at /admin/…/…/add/ because django auto assigns an integer for the field value. If forcing my uuid field to be an autofield is actually the correct approach, how do I override what django inserts as the automatic value? -- You received this message because you are subscribed to the Google Groups "Django developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-developers?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
