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

后端 未结 4 1295
你的背包
你的背包 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条回答
  •  猫巷女王i
    2020-11-28 20:01

    Execute:

    python manage.py dumpdata > datadump.json
    

    Next, change your settings.py to the mysql database.

    Finally:

    python manage.py loaddata datadump.json
    

提交回复
热议问题