Postgres Database Error: relation does not exist

后端 未结 2 1918
日久生厌
日久生厌 2021-01-14 04:57

I am fixing some problems with a legacy system and have run into a snag that I am surprised was not caught sooner. I am running Django 1.3 and using postgres 9.1.3 in runnin

2条回答
  •  长情又很酷
    2021-01-14 05:23

    The problem is you haven't synced your DB, I guess. Please execute these commands:

    1. python manage.py makemigrations myappname
    2. python manage.py migrate myappname

提交回复
热议问题