Elio -- Have you used  UTF-8

*By default, with a UTF-8 database, MySQL will use the utf8_general_ci 
collation. This results in all string equality comparisons being done in a 
case-insensitive manner. That is, "Fred" and "freD" are considered equal at 
the database level. If you have a unique constraint on a field, it would be 
illegal to try to insert both "aa" and "AA" into the same column, since 
they compare as equal (and, hence, non-unique) with the default collation *



*Collation settings*   in 
https://docs.djangoproject.com/en/dev/ref/databases/

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/ae11c3fc-16fc-4e73-b32c-3725c6731788%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to