将数据库从本地django迁移到heroku

时间:2016-03-04 18:44:22

标签: django database postgresql heroku migration

我在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有一个ForeignKeycategoria。所以,localy,我有3个数据库:

produtos_produtoprodutos_categoriacliente

我使用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

1 个答案:

答案 0 :(得分:4)

您必须在本地运行makemigrations,然后将生成的迁移文件提交到git。 Heroku将在您部署时自动运行。