Update settings.php.j2
feat: setting the MySQL transaction isolation level in settings.php.j2 template
This commit is contained in:
parent
ca95b34514
commit
f5825db70f
1 changed files with 3 additions and 0 deletions
|
|
@ -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 %}
|
||||||
|
|
|
||||||
Reference in a new issue