[Django]-Why does MySQL treat Japanese alphabets hiragana and katakana the same, and how can you make it compatible with Django?

0👍

This is probably because MySQL treats hiragana and katakana as the same when the column field is set to utf_general_ci.

change the column collation to utf_bin

👤Drew

Leave a comment