Skip to content

Instantly share code, notes, and snippets.

@kelsS
Last active July 26, 2017 13:06
Show Gist options
  • Save kelsS/1872a41227ac32a8cf1ebe0255cd8510 to your computer and use it in GitHub Desktop.
Save kelsS/1872a41227ac32a8cf1ebe0255cd8510 to your computer and use it in GitHub Desktop.
Example Drupal Settings.php with UTF8MB4 Database Enabled
$databases['default']['default'] = array(
'driver' => 'mysql',
'database' => 'databasename',
'username' => 'username',
'password' => 'password',
'host' => 'localhost',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_general_ci',
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment