I have made several adjustments to my database schema and it now time to run:
> ./manage.py schemamigration --auto my_app
However, South is raising various objections about setting defaults for some fields, etc. It also isn't picking up on the fact that I have renamed a certain column in one of my tables - it thinks I am dropping one column and adding another, when in fact I have just renamed a single column. How can I make South smarter? Also, is it possible to break this migration down into several smaller steps?