TaoLer/config/database.php

54 lines
1.6 KiB
PHP
Raw Normal View History

2020-01-01 13:17:19 +08:00
<?php
return [
2020-05-20 11:33:27 +08:00
// 默认使用的数据库连接配置
'default' => 'mysql',
2020-01-01 13:17:19 +08:00
// 自定义时间查询规则
'time_query_rule' => [],
// 自动写入时间戳字段
// true为自动识别类型 false关闭
// 字符串则明确指定时间字段类型 支持 int timestamp datetime date
'auto_timestamp' => true,
// 时间字段取出后的默认时间格式
'datetime_format' => 'Y-m-d H:i:s',
// 数据库连接配置信息
'connections' => [
2020-01-15 10:52:57 +08:00
'mysql' => [
// 数据库类型
'type' => 'mysql',
// 服务器地址
2021-12-21 16:34:33 +08:00
'hostname' => '',
2020-01-15 10:52:57 +08:00
// 数据库名
2021-12-21 16:34:33 +08:00
'database' => '',
2020-01-15 10:52:57 +08:00
// 用户名
2021-12-21 16:34:33 +08:00
'username' => '',
2020-01-15 10:52:57 +08:00
// 密码
2021-12-21 16:34:33 +08:00
'password' => '',
2020-01-15 10:52:57 +08:00
// 端口
2020-01-16 17:36:51 +08:00
'hostport' => '3306',
2020-01-15 10:52:57 +08:00
// 数据库连接参数
'params' => [],
// 数据库编码默认采用utf8
'charset' => 'utf8',
// 数据库表前缀
2021-12-15 15:46:04 +08:00
'prefix' => 'tao_',
2020-01-15 10:52:57 +08:00
// 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
'deploy' => 0,
// 数据库读写是否分离 主从式有效
'rw_separate' => false,
// 读写分离后 主服务器数量
'master_num' => 1,
// 指定从服务器序号
'slave_no' => '',
// 是否严格检查字段是否存在
'fields_strict' => true,
// 是否需要断线重连
'break_reconnect' => false,
// 监听SQL
'trigger_sql' => true,
// 开启字段缓存
'fields_cache' => false,
// 字段缓存路径
'schema_cache_path' => app()->getRuntimePath() . 'schema' . DIRECTORY_SEPARATOR,
],
2020-01-01 13:17:19 +08:00
],
];