Commit e26bd3ff authored by Hélio's avatar Hélio Committed by GitHub

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.
parent 2c6d7646
......@@ -67,6 +67,16 @@ return [
'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' => '',
],
],
/*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment