You have a typo in your models.py
, at line 5:
title = modles.CharField(max_lenght=100)
This should be updated to be
title = models.CharField(max_length=100)
solved manage.py syncdb not working [closed]
You have a typo in your models.py
, at line 5:
title = modles.CharField(max_lenght=100)
This should be updated to be
title = models.CharField(max_length=100)
solved manage.py syncdb not working [closed]