Created
March 21, 2014 08:25
-
-
Save laszlomiklosik/9681937 to your computer and use it in GitHub Desktop.
mysql case sensitivity disabling
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# if you want queries executed in all you schemas to be case insensitive do this | |
$ sudo gedit /etc/mysql/my.cnf | |
edit the file adding the entry lower_case_table_names=1 just under the group definition: [mysqld] | |
[mysqld] | |
lower_case_table_names=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment