Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/Config/Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ class Database extends Config
'port' => 3306,
'foreignKeys' => true,
'busyTimeout' => 1000,
'synchronous' => null,
'dateFormat' => [
'date' => 'Y-m-d',
'datetime' => 'Y-m-d H:i:s',
Expand Down
1 change: 1 addition & 0 deletions tests/_support/Config/Registrar.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ class Registrar
'failover' => [],
'port' => 3306,
'foreignKeys' => true,
'synchronous' => 0,
],
'SQLSRV' => [
'DSN' => '',
Expand Down
2 changes: 2 additions & 0 deletions user_guide_src/source/changelogs/v4.6.4.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ Message Changes
Changes
*******

- **Config:** Added the ``synchronous`` key for ``Config\Database::$tests``. For SQLite3 driver only.

************
Deprecations
************
Expand Down
3 changes: 2 additions & 1 deletion user_guide_src/source/installation/upgrade_464.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ and it is recommended that you merge the updated versions with your application:
Config
------

- @TODO
- app/Config/Database.php
- Added the ``synchronous`` key for ``Config\Database::$tests``.

All Changes
===========
Expand Down
Loading