我在Django中有一个应用程序,我在heroku中部署。 部署运行良好,但我的模型数据库没有迁移。
部署后,我再次运行localy:
python manage.py makemigrations
python manage.py migrate
之后,我做了:
heroku run python manage.py makemigrations
heroku run python manage.py migrate
在我运行服务器并等待它运行良好之后:
heroku run python manage.py runserver
我有3个型号:
cliente,categoria,produto
produto
有一个ForeignKey
到categoria
。所以,localy,我有3个数据库:
produtos_produto
,produtos_categoria
,cliente
。
我使用PostgreSQL
作为数据库localy和heroku。
但是在heroku中,我没有任何这个数据库。
当我运行服务器时,在浏览器中我有以下答案:
ProgrammingError at /
relation "produtos_categoria" does not exist
LINE 1: ...ia"."descricao", "produtos_categoria"."logo" FROM "produtos_...
^
Request Method: GET
Request URL: http://redewebsite.herokuapp.com/
Django Version: 1.9.2
Exception Type: ProgrammingError
Exception Value:
relation "produtos_categoria" does not exist
LINE 1: ...ia"."descricao", "produtos_categoria"."logo" FROM "produtos_...
^
Exception Location: /app/.heroku/python/lib/python2.7/site-packages/django/db/backends/utils.py in execute, line 64
Python Executable: /app/.heroku/python/bin/python
Python Version: 2.7.11
Python Path:
['/app',
'/app/.heroku/python/bin',
'/app/.heroku/python/lib/python2.7/site-packages/setuptools-19.6-py2.7.egg',
'/app/.heroku/python/lib/python2.7/site-packages/pip-8.0.2-py2.7.egg',
'/app',
'/app/.heroku/python/lib/python27.zip',
'/app/.heroku/python/lib/python2.7',
'/app/.heroku/python/lib/python2.7/plat-linux2',
'/app/.heroku/python/lib/python2.7/lib-tk',
'/app/.heroku/python/lib/python2.7/lib-old',
'/app/.heroku/python/lib/python2.7/lib-dynload',
'/app/.heroku/python/lib/python2.7/site-packages']
Server time: Sex, 4 Mar 2016 17:50:43 +0000
答案 0 :(得分:4)
您必须在本地运行makemigrations,然后将生成的迁移文件提交到git。 Heroku将在您部署时自动运行。