[Answer]-Facing issue with Case sensitive search in django-tastypie-mysql

1👍

I had changed the character_encoding in the database level. Which support case insensitive search.

I ran following command:-

alter table {{table_name}} convert to character set utf8 collate utf8_general_ci;
👤Anurag

Leave a comment