Migrate Django development database (.sql3) to Heroku
问题 How does one migrate their Django .sql3 development database to heroku? Per here, and here I tried: heroku pg:psql --app sblic < database.sql3 but my Django admin shows no new uploads (even after syncdb/migrate/ or collectstatic 回答1: Perhaps there may be a way to directly upload an sql3 file to Heroku, but I went with the path of clearest certainty (convert local sql3 db to postgre db and upload a dump of postgre db to Heroku via pgbackups tool): Create a dump of your sql3 database as a json