I've been using an sqlite database for this app i'm writing on top of django and I want to migrate to mysql now that it's starting to accumulate a lot of data.
So i used django's dumpdata to create a json fixture from my sqlite database and tried to load that using django's loaddata into a brand new mysql database and got this error:
mysql_exceptions.Warning: Problem installing fixture '/pahtofixture/fixture.json': Data truncated for column 'name' at row 1
I suspect this is because the data in that column uses Arabic letters.