WrenchMarketImport

This commit is contained in:
CHIEFSOFT\ameye
2024-09-16 11:06:06 -04:00
parent 57ae51ba4a
commit cfa5d97b6f
5 changed files with 72 additions and 2 deletions
+30
View File
@@ -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' => '',