Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can not find "python manage.py reset" command parameters in django1.6

$python manage.py reset 
Unknown command: 'reset'
Type 'manage.py help' for usage.

In django 1.6 whether to cancel this command parameters yet?

like image 650
Sebastian Avatar asked Sep 10 '26 07:09

Sebastian


1 Answers

This one worked for me:

./manage.py sqlclear AppName | ./manage.py dbshell

Found here.

like image 163
Ivan Chaer Avatar answered Sep 13 '26 06:09

Ivan Chaer