I made a minor change to my model. I have south
installed and has done the initial migration before.
from:
class Text(models.Model):
title = models.CharField(max_length=20, verbose_name="posting title")
To:
class Text(models.Model):
title = models.CharField(max_length=200, verbose_name="posting title")
I changed the max_length from 20 to 200. when I run
./manage.py schemamigration my_app --auto
Nothing seems to have changed.
Does it mean any changes to attributes (such as verbose_name, label, required etc) do not need syncdb?