bhoomika garg
bhoomika garg

Reputation: 1

Heroku Postgresql Database

I have created database in heroku hobby-dev and uploaded table from postgresql and used app.db.create_all() to trigger database model but its showing psycopg2 wheel package will be renamed from release 2.8 and suggesting us to install psycopg2-binary and we installed that too and still app.db.create_all() not working.

Upvotes: 0

Views: 48

Answers (1)

ParthS007
ParthS007

Reputation: 2691

The error doesn't relate to database Integration. There should be some error in Backend that's why It's giving 500.

For checking the error in heroku logs using heroku cli, use this : heroku logs -t

Alternatively, you can view the logs on the App dashboard.

I hope this helps.

Upvotes: 1

Related Questions