Robert_T119
Robert_T119

Reputation: 5

no such table: django_plotly_dash_statelessapp

I'm trying to deploy my app through Render app, and everything is good, except for the HTML link, it shows"no such table: django_plotly_dash_statelessapp". Not really sure how to solve that.

Also, does anyone know which app is free for deployment, I used to use Heroku, but they eliminate the free one from November.no such table: django_plotly_dash_statelessapp

Upvotes: -1

Views: 257

Answers (1)

Marcin Augustynow
Marcin Augustynow

Reputation: 1

Just had the same issue.

Run the following:

  • python manage.py makemigrations
  • python manage.py migrate

Worked for me. I guess the django plotly plugin needs to create some tables in the django managed db

Upvotes: -1

Related Questions