$python manage.py reset
Unknown command: 'reset'
Type 'manage.py help' for usage.
In django 1.6 whether to cancel this command parameters yet?
$python manage.py reset
Unknown command: 'reset'
Type 'manage.py help' for usage.
In django 1.6 whether to cancel this command parameters yet?
I'm working with Django 1.6 and the previous answer didn't work for me. I've been seeking for a way to easily update my database tables, and the best way I've found 'till now is to use migrations of South.
1- Install south via pip pip install south
.
2- Add south
to your INSTALLED_APPS
.
3- Then run python manage.py convert_to_south Appname
.
4- And finally run python manage.py migrate Appname
.
You'll do the three first steps only once, then all you have to do ti update your changes is step 4.