I just created all the DB tables from one model with 6 classes.
In one of them I would like to add a NEW field.
I did that and hit: python manage.py syncdb.
But Django won’t add that column in that table.
Am I missing something?
How can i add columns/tables AFTER I already created the db in Django.
Thanks!
You need to use a migration tool such as South.