Solved...

The answer is to not user "pk" as a field in your model.  I switch pk
to something else and the serialize and deserialize work fine.

-kurt

On Feb 7, 2:28 pm, Kurt Schwehr <schw...@gmail.com> wrote:
> class alert(models.Model):
>     pk = models.CharField(max_length=10, primary_key=True)
>     zone_id = models.IntegerField()
>     first_good_data = models.DateTimeField()
>     ...
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to