move some items into pragmas

This commit is contained in:
Taylor Otwell
2025-09-07 17:40:40 -05:00
parent b3d686abdf
commit 39072d072c

View File

@@ -37,10 +37,12 @@ return [
'database' => env('DB_DATABASE', database_path('database.sqlite')),
'prefix' => '',
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
'busy_timeout' => null,
'journal_mode' => null,
'synchronous' => null,
'transaction_mode' => 'DEFERRED',
'pragmas' => [
'busy_timeout' => null,
'journal_mode' => null,
'synchronous' => null,
'transaction_mode' => 'DEFERRED',
],
],
'mysql' => [