What's the best way to migrate a Django DB from SQLite to MySQL?

后端 未结 4 1293
你的背包
你的背包 2020-11-28 19:33

I need to migrate my db from sqlite to mysql, and the various tools/scripts out there are too many for me to easily spot the safest and most elegant solution.

This s

4条回答
  •  悲哀的现实
    2020-11-28 19:56

    This is a neater way to avoid the ContentType issues described elsewhere:

    ./manage.py dumpdata --exclude contenttypes --exclude auth.permission --exclude sessions --indent 2 > dump.json
    

    Then:

    ./manage.py loaddata dump.json
    

提交回复
热议问题