It seems that your AuthMessage table contains invalid values in an integer field. Try to allow NULL values in such field, and replace any empty field with an explicit NULL:
update AuthMessage set BadIntegerColumn = NULL WHERE BadIntegerColumn < 0 I've had the very same problem with a mysql db where a date column had default to '0000-00-00'. Allowing NULL and changing all date < 0 to NULL solved the problem. Hope this help -- didier Belot --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

