I have Django model that I already have initialized with south using ./manage.py schemamigration (appname) --initial
. All was going well through this point, until I decided I needed another field. I added another field and tried to to migrate the change with ./manage.py schemamigration (appname) --auto
, but it says:
- Nothing to migrate.
I made sure to migrate the initial changes. Seems to be similar to the problem here, but the solution got me nowhere.