If you are developing on Django and run syncdb often, you don't want to reset the admin information if you haven't changed it. You can do the following.
To reset a specific app
./manage.py reset [app] [--noinput]
To see what Django will do before actually doing it
./manage sqlreset [app]
See Django Autoload Data to streamline things even more.