Added additional dump variables

This commit is contained in:
snipe 2016-05-19 23:37:36 -07:00
parent be0a60e049
commit 6724489be2
2 changed files with 4 additions and 0 deletions

View file

@ -18,6 +18,7 @@ DB_DATABASE=null
DB_USERNAME=null DB_USERNAME=null
DB_PASSWORD=null DB_PASSWORD=null
DB_PREFIX=null DB_PREFIX=null
DB_DUMP_PATH='/usr/local/bin'
# -------------------------------------------- # --------------------------------------------
# REQUIRED: OUTGOING MAIL SERVER SETTINGS # REQUIRED: OUTGOING MAIL SERVER SETTINGS

View file

@ -69,6 +69,9 @@ return [
'prefix' => env('DB_PREFIX', null), 'prefix' => env('DB_PREFIX', null),
'strict' => false, 'strict' => false,
'engine' => null, 'engine' => null,
'dump_command_path' => env('DB_DUMP_PATH', '/usr/local/bin'), // only the path, so without 'mysqldump'
'dump_command_timeout' => 60 * 5, // 5 minute timeout
'dump_using_single_transaction' => true, // perform dump using a single transaction
], ],
'pgsql' => [ 'pgsql' => [