[Answer]-Django and South: South not detecting when django models change

1👍

Someone pointed that the Manage = False in my models could cause the trouble. I tried commenting those lines and guess what:

C:\Users\Kevin\Desktop\difundelo>python manage.py schemamigration registros --auto
 ? The field 'Post.image' does not have a default specified, yet is NOT NULL.
 ? Since you are adding this field, you MUST specify a default
 ? value to use for existing rows. Would you like to:
 ?  1. Quit now, and add a default to the field in models.py
 ?  2. Specify a one-off value to use for existing columns now
 ? Please select a choice:

Voilá! It worked! I can finally keep working on my project!

PS: I don’t know why the guy who commented the solution, deleted his comment. Thank you anonymous!!!

Leave a comment