mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
Update database connection settings
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
DB_CONNECTION=nntmux
|
||||
DB_SYSTEM=mysql
|
||||
DB_HOST=localhost
|
||||
DB_HOST=127.0.0.1
|
||||
DB_PORT=3306
|
||||
DB_SOCKET=
|
||||
DB_USER=
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
2017-09-01 DariusIII
|
||||
* Chg: Update database connection settings
|
||||
* Chg: Update Movie class
|
||||
* Chg: Remove now unused nntmux/db/Settings class
|
||||
* Chg: Rename Models/Settings value function into settingValue to prevent collision with query builder value response
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@ $capsule = new Capsule;
|
||||
|
||||
$capsule->addConnection([
|
||||
'driver' => env('DB_SYSTEM'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'host' => env('DB_HOST', 'localhost'),
|
||||
'port' => env('DB_PORT', '3306'),
|
||||
'database' => env('DB_NAME', 'nntmux'),
|
||||
'username' => env('DB_USER', 'root'),
|
||||
|
||||
Reference in New Issue
Block a user