Search code examples
djangoherokudjango-modelsheroku-postgres

Django/ Heroku Deployment (ProgrammingError at / relation "posts_post" does not exist LINE 1)


I'm Sorry to ask again, but i haven't gotten any solutions. my django blog works fine locally but after deploying to heroku, i started having an error. Please what can I do to resolve this? The error states: "ProgrammingError at / relation "posts_post" does not exist LINE 1: ...evious_post_id", "posts_post"."next_post_id" FROM "posts_pos..."


Solution

  • Open command line of heroku : heroku run bash

    Make migration of database : py manage.py makemigrations

    Migrate database : py manage.py migrate

    Create super user : py manage.py createsuperuser

    Login as admin at your hosted site: https://website url/admin

    This will not upload your data at local server.

    You may add data by creating superuser at heroku server