Hi,

I'm working up a simple, one-off web-based survey (so pls don't knock
me for not normalizing).

Here's my model:

class Response(models.Model):
       email = models.EmailField(maxlength=24)
       code = models.CharField(maxlength=24)
       response_ts = models.DateTimeField(null=True)
       responded = models.BooleanField(default=False)
       a1 = models.CharField(maxlength=24,null=True)
       a2 = models.CharField(maxlength=24,null=True)
       a3 = models.CharField(maxlength=24,null=True)

The postgresql table that gets created does not have a default value
for the "responded" column and I get a sql exception if I don't
manually set responded to 'f' when I save each new Response object.

I'm using Django-0.95-py2.3.egg.

Thanks!

jacob


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to