Using django-socialregistration, got error messages:
Data truncated for column 'cur_url' at row 1
What went wrong here?
How do I fix truncated data? Fix the data that we are trying to insert or update. Data length should not exceed the maximum allowed limit for the particular column. Use 'SET ANSI_WARNINGS OFF' to truncate the data and insert it as per column maximum string length.
Truncated means “cut short”, and “data truncated” warnings or errors refer to a value's data being cut off at the end during the importing process (e.g. a value of “2.9823” being imported as “2.98”). These errors are important warnings, because it notifies us that our data has not been imported accurately.
You have tried to insert a larger value than field accepts, so it was literally "cut to fit".
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With