Home > Software engineering >  relation "django_plotly_dash_statelessapp" does not exist LINE 1: SELECT COUNT(*) AS "
relation "django_plotly_dash_statelessapp" does not exist LINE 1: SELECT COUNT(*) AS "

Time:08-30

I am trying to deploy my Django app on render. But there is an error which I don't understand what type of error is this.Please help to solve this

error: ProgrammingError at /nickelpure/[relation "django_plotly_dash_statelessapp" does not exist
LINE 1: SELECT COUNT(*) AS "__count" FROM "django_plotly_dash_statel...
                                      ^

Error screenshot

CodePudding user response:

You have to deploy migrations files and run python manage.py migrate --run-syncdb command.

  • Related