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.

!!Reset specific django app

To reset a specific app

%%prettify 
{{{
./manage.py reset [app] [--noinput]
}}}
/%

To see what Django will do before actually doing it

%%prettify 
{{{
./manage sqlreset [app]
}}}
/%

See [Django Autoload Data] to streamline things even more.

----
[Django | CategoryArchive.Computing.Lang.Python.Django]