fox login types
This commit is contained in:
+28
-1
@@ -24,7 +24,7 @@ class Database extends Config
|
||||
*
|
||||
* @var array<string, mixed>
|
||||
*/
|
||||
public array $default = [
|
||||
public array $default_old = [
|
||||
'DSN' => '',
|
||||
'hostname' => 'localhost',
|
||||
'username' => '',
|
||||
@@ -50,6 +50,33 @@ class Database extends Config
|
||||
],
|
||||
];
|
||||
|
||||
// /**
|
||||
// * Sample database connection for Postgre.
|
||||
// *
|
||||
// * @var array<string, mixed>
|
||||
// */
|
||||
public array $default = [
|
||||
'DSN' => '',
|
||||
'hostname' => '10.20.30.60',
|
||||
'username' => 'merms_panel',
|
||||
'password' => 'merms_panel',
|
||||
'database' => 'merms_panel',
|
||||
'schema' => 'public',
|
||||
'DBDriver' => 'Postgre',
|
||||
'DBPrefix' => '',
|
||||
'pConnect' => false,
|
||||
'DBDebug' => true,
|
||||
'charset' => 'utf8',
|
||||
'swapPre' => '',
|
||||
'failover' => [],
|
||||
'port' => 5432,
|
||||
'dateFormat' => [
|
||||
'date' => 'Y-m-d',
|
||||
'datetime' => 'Y-m-d H:i:s',
|
||||
'time' => 'H:i:s',
|
||||
],
|
||||
];
|
||||
|
||||
// /**
|
||||
// * Sample database connection for SQLite3.
|
||||
// *
|
||||
|
||||
Reference in New Issue
Block a user