[Django]-Sqlite database not migrated to postgresql when pushed to heroku server (django)

3👍

If you’re using the Starter-tier databases, there is a delay in populating those stats. You can see if there are tables immediately if you psql in:

$ heroku pg:psql -a app_name
psql=> \dt
[...tables...] 

Also, please see my answer here on using postgres locally instead of sqlite3 (recommended):

👤catsby

Leave a comment