this is my model:
class zjm_model(models.Model):
a = models.CharField(max_length=36)
b = models.CharField(max_length=36)
and the table zjm_modelcontains a lot of data in my mysql, and now
I want to add a new field:
class zjm_model(models.Model):
a = models.CharField(max_length=36)
b = models.CharField(max_length=36)
c = models.CharField(max_length=36)
but when I run manage.py syncdb, it will show the following:
No fixtures found.
since I can add a new field to my database,
thank
source
share