Last active
December 10, 2015 23:49
-
-
Save pixelpogo/4512453 to your computer and use it in GitHub Desktop.
additions to the default mysql configuration
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
# add this to your my.cnf | |
# in [mysqld]: | |
innodb_file_per_table # one file for each table | |
skip-character-set-client-handshake # ignore other charsets than utf8 | |
collation_server=utf8_unicode_ci | |
character_set_server=utf8 | |
default_storage_engine=INNODB |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment