64
If you change the database, you should create database for the new database.
Use manage.py migrate
command. (or manage.py syncdb
if you used it for old database).
20
You can alternatively migrate just the sessions app if you have already run migrate and still getting the error
python manage.py migrate sessions
- [Django]-Organizing Django unit tests
- [Django]-MySQL vs PostgreSQL? Which should I choose for my Django project?
- [Django]-Get objects from a many to many field
Source:stackexchange.com