I tried to reproduce the error.
When South discovered that there was data with a length greater than 100 in the desc field during the merge, it would prompt: django.db.utils.DataError: (1265, "Data truncated for column 'XXX' at row X")
Actually, the following at row X has pointed out which record is too long, you just need to modify it yourself.
I tried to reproduce the error.
When South discovered that there was data with a length greater than 100 in the desc field during the merge, it would prompt:
django.db.utils.DataError: (1265, "Data truncated for column 'XXX' at row X")
Actually, the following
at row X
has pointed out which record is too long, you just need to modify it yourself.