Add sqlsrv as group connection

Since the doc says that the Laravel supports SQL Server out of the box, makes sense add it, out of the box.
This commit is contained in:
Hélio 2017-05-03 13:20:25 -03:00 committed by GitHub
parent 2c6d76469a
commit e26bd3ffb0
1 changed files with 10 additions and 0 deletions

View File

@ -67,6 +67,16 @@
'sslmode' => 'prefer',
],
'sqlsrv' => [
'driver' => 'sqlsrv',
'host' => env('DB_HOST', 'localhost'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8',
'prefix' => '',
],
],
/*