WrenchMarketImport
This commit is contained in:
@@ -4,6 +4,8 @@ namespace Config;
|
||||
|
||||
use CodeIgniter\Database\Config;
|
||||
|
||||
include('config.'.$_SERVER['CI_ENV'].'.php');
|
||||
//include 'config.development.php';
|
||||
/**
|
||||
* Database Configuration
|
||||
*/
|
||||
@@ -24,7 +26,35 @@ class Database extends Config
|
||||
*
|
||||
* @var array<string, mixed>
|
||||
*/
|
||||
|
||||
public array $default = [
|
||||
'DSN' => '',
|
||||
'hostname' => '10.20.30.60',
|
||||
'username' => 'wrenchboard',
|
||||
'password' => 'wrenchboard',
|
||||
'database' => 'wrenchboard',
|
||||
'DBDriver' => 'postgre',
|
||||
'DBPrefix' => '',
|
||||
'pConnect' => false,
|
||||
'DBDebug' => true,
|
||||
'charset' => 'utf8mb4',
|
||||
'DBCollat' => 'utf8mb4_general_ci',
|
||||
'swapPre' => '',
|
||||
'encrypt' => false,
|
||||
'compress' => false,
|
||||
'strictOn' => false,
|
||||
'failover' => [],
|
||||
'port' => 3306,
|
||||
'numberNative' => false,
|
||||
'dateFormat' => [
|
||||
'date' => 'Y-m-d',
|
||||
'datetime' => 'Y-m-d H:i:s',
|
||||
'time' => 'H:i:s',
|
||||
],
|
||||
];
|
||||
|
||||
|
||||
public array $default00 = [
|
||||
'DSN' => '',
|
||||
'hostname' => 'localhost',
|
||||
'username' => '',
|
||||
|
||||
Reference in New Issue
Block a user