所以我想運行一個Django應用程序初始遷移,當我嘗試運行遷移命令(蟒蛇manage.py遷移或makemigrations)我得到以下錯誤:Django的遷移關係不存在
psycopg2.ProgrammingError: relation "dotworks_server_internship" does not exist
LINE 1: ...s", "dotworks_server_internship"."questions" FROM "dotworks_...
^
我在使用Django 1.9.6的Windows環境中,我的數據庫是postgres。另外,我使用PGAdmin來管理我的數據庫。
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'dotworks',
'USER': 'postgres',
'PASSWORD': 'mypasswordgoeshere',
'HOST': 'localhost',
'PORT': '5432',
}
}
沒有工作,問題似乎是表甚至沒有被第一次遷移嘗試創建 –