I'm working with a PyQt application which uses Django to deliver it's content to desktop users.
In the latest update we have stale content types stored in the database by Django and on startup of the application South's migrate or syncdb offers to delete them. Is it possible to do something with the call to migrate/syncdb that automatically deletes these?
This prompt can't be exposed to the end user for obvious reasons, so I really hope there is some way we can take car of this automatically :)
I've seen that with the South migrate you can call --noinput
but that doesn't delete them, and it'd be good if we could do that as we know it'll be safe.