Update settings.php.j2

feat: setting the MySQL transaction isolation level in settings.php.j2 template
This commit is contained in:
Fernando A Castro 2024-07-23 22:08:00 +02:00 committed by GitHub
parent ca95b34514
commit f5825db70f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,6 +11,9 @@ $databases['{{ key }}']['{{ target }}'] = array(
'database' => '{{ values.database }}', 'database' => '{{ values.database }}',
'username' => '{{ values.username }}', 'username' => '{{ values.username }}',
'password' => '{{ values.password }}', 'password' => '{{ values.password }}',
'init_commands' => [
'isolation_level' => '{{ values.isolevel }}',
],
); );
{% endfor %} {% endfor %}