#5037: wrong typefield for email field in models.py
----------------------------------+-----------------------------------------
   Reporter:  [EMAIL PROTECTED]  |                Owner:  jacob        
     Status:  new                 |            Component:  Documentation
    Version:  SVN                 |           Resolution:               
   Keywords:  EmailField          |                Stage:  Unreviewed   
  Has_patch:  0                   |           Needs_docs:  0            
Needs_tests:  0                   |   Needs_better_patch:  0            
----------------------------------+-----------------------------------------
Comment (by popt):

 http://www.djangoproject.com/documentation/db-api
 
 wrong TypeField for email field in models.py
 
 class Author(models.Model):
     name = models.CharField(maxlength=50)
     email = models.URLField()
 
     def __unicode__(self):
         return self.name
 
 --------------------------------
 
 it should be :
 
 class Author(models.Model):
     name = models.CharField(maxlength=50)
     email = models.EmailField
 
     def __unicode__(self):
         return self.name

-- 
Ticket URL: <http://code.djangoproject.com/ticket/5037#comment:2>
Django Code <http://code.djangoproject.com/>
The web framework for perfectionists with deadlines
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" 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-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to