[Answered ]-Django: How to dump the database in 1.8?

1👍

You can dump the db directly with mysqldump as allcaps suggested, or run manage.py migrate first and then it should work. It’s telling you there are migrations that you have yet to apply to the DB.

1👍

Try the following:

python manage.py dumpdata <app_name> > <outputfile>

Leave a comment