mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
BC! Update database configuration and unify env settings(DB_NAME => DB_DATABASE, DB_USER => DB_USERNAME) and remove unused settings
This commit is contained in:
+3
-3
@@ -40,11 +40,11 @@ return [
|
||||
],
|
||||
|
||||
'mysql' => [
|
||||
'driver' => env('DB_SYSTEM', 'mysql'),
|
||||
'driver' => 'mysql',
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '3306'),
|
||||
'database' => env('DB_NAME', 'nntmux'),
|
||||
'username' => env('DB_USER', 'nntmux'),
|
||||
'database' => env('DB_DATABASE', 'nntmux'),
|
||||
'username' => env('DB_USERNAME', 'nntmux'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'unix_socket' => env('DB_SOCKET', ''),
|
||||
'charset' => 'utf8',
|
||||
|
||||
Reference in New Issue
Block a user