fix: 更新默认密码,方便测试使用

This commit is contained in:
邹景立 2024-08-07 23:29:14 +08:00
parent 847e1adbe7
commit 41f6333c3f

View File

@ -29,21 +29,21 @@ return [
// 数据库类型
'type' => 'mysql',
// 服务器地址
'hostname' => '106.55.25.32',
'hostname' => env('mysql.hostname', '106.55.25.32'),
// 数据库名
'database' => 'admin_dv',
'database' => env('mysql.database', 'admin_dv'),
// 用户名
'username' => 'admin_dv',
'username' => env('mysql.username', 'admin_dv'),
// 密码
'password' => '3twr7kNZLXeSGtc7',
'password' => env('mysql.password', '3twr7kNZLXeSGtc7'),
// 端口
'hostport' => '3306',
'hostport' => env('mysql.hostport', '3306'),
// 数据库连接参数
'params' => [],
// 数据库编码默认采用 utf8
'charset' => 'utf8mb4',
// 数据库表前缀
'prefix' => '',
'prefix' => env('mysql.prefix', ''),
// 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
'deploy' => 0,
// 数据库读写是否分离 主从式有效