diff --git a/Changelog b/Changelog index d3b807f99..c682c0df0 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2018-02-07 DariusIII + * Chg: Add sphinxql connection to config/database.php * Major upgrade: Upgraded to laravel/framework 5.6 and adjusted libraries * Chg: Change escapeString function to static (in SphinxSearch class) * Chg: Do not use delete_release stored procedure anymore to delete releases, FK's do it diff --git a/config/database.php b/config/database.php index c4e00b525..c62b102bc 100644 --- a/config/database.php +++ b/config/database.php @@ -91,6 +91,15 @@ return [ 'strict' => false, ], + 'sphinx' => [ + 'driver' => 'mysql', + 'host' => '127.0.0.1', + 'port' => 9306, + 'database' => '', + 'unix_socket' => '', + 'charset' => 'utf8', + ], + ], /*