Skip to content
Snippets Groups Projects
Commit 24d69d49 authored by jurgenhaas's avatar jurgenhaas
Browse files

drupal-environment#9 Add collation and charset to Drupal settings file

parent e0ec411d
No related branches found
No related tags found
1 merge request!49Merging develop into main
Pipeline #708499 passed
This commit is part of merge request !49. Comments created here will be created in the context of that merge request.
......@@ -25,6 +25,8 @@ $databases = array(
'host' => 'mariadb',
'port' => '3306',
'prefix' => '',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_general_ci',
'init_commands' => [
'isolation_level' => 'SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED',
],
......@@ -53,6 +55,8 @@ $databases = array(
'password' => 'drupal',
'database' => 'drupal',
'prefix' => '',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_general_ci',
'init_commands' => [
'isolation_level' => 'SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED',
],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment