I am having an issue with the django.contrib.auth User model where the email max_length is 75.
I am receiving email addresses that are longer than 75 characters from the facebook api, and I need to (would really like to) store them in the user to continuity among users that are from facebook connect and others.
I am able to solve the problem of "Data truncated for column 'email' at row 1
" by manually going editing the field in our mySql database, but is there a better way to solve this? preferably one that does not involve me manually editing the database every time I reset it for a schema change?
I'm ok with editing the database as long as I can add it to the reset script, or the initial_data.json file
Thanks, Jim