[Answered ]-Syncdb error using mysql

2👍

You just have a typo: use ‘max_length’ instead of ‘max_lenght’:

class SignUp(models.Model):
    first_name = models.CharField(max_length=255, null=True, blank=True)
    last_name = models.CharField(max_length=255, null=True, blank=True)
    email = models.EmailField()
    timestamp = models.DateTimeField(auto_now_add=True, auto_now=False)
    updated = models.DateTimeField(auto_now_add=False, auto_now=True)

    def __unicode__(self):
            return smart_unicode(self.email)

Leave a comment