Set DB prefix in env

This commit is contained in:
snipe 2016-04-19 00:47:12 -07:00
parent f1ad5461d8
commit e4b5d426db
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ DB_HOST=localhost
DB_DATABASE=null
DB_USERNAME=null
DB_PASSWORD=null
DB_PREFIX=null
# --------------------------------------------
# REQUIRED: OUTGOING MAIL SERVER SETTINGS

View file

@ -66,7 +66,7 @@ return [
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
'prefix' => env('DB_PREFIX', null),
'strict' => false,
'engine' => null,
],