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
A (fuller) list of the steps I needed for moving from sqlite to MySQL, YMMV:
SET GLOBAL FOREIGN_KEY_CHECKS = 0;from django.contrib.contenttypes.models import ContentType
ContentType.objects.all().delete()
quit()cat datadump.json | python -m json.tool > datadump_pretty.jsonmysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -D mysql -P 1234 -u root -p --protocol=tcp
mysql -P 1234 -u root -p -e "flush tables" --protocol=tcp