add sqlite options

This commit is contained in:
Taylor Otwell 2024-07-16 09:39:18 -05:00
parent 4ef5e2f89e
commit 2897a49c65

View File

@ -37,6 +37,9 @@ 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,
],
'mysql' => [