I started to develop a Django base web application. Everything were fine until I installed Psycopg2
for my database which I created in PstgreSql
. Now w
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).
You can alternatively migrate just the sessions app if you have already run migrate and still getting the error
python manage.py migrate sessions