database.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. return [
  15. // 默认使用的数据库连接配置
  16. 'default' => 'mysql',
  17. // 自定义时间查询规则
  18. 'time_query_rule' => [],
  19. // 自动写入时间戳字段
  20. 'auto_timestamp' => true,
  21. // 时间字段取出后的默认时间格式
  22. 'datetime_format' => 'Y-m-d H:i:s',
  23. // 数据库连接配置信息
  24. 'connections' => [
  25. 'mysql' => [
  26. // 数据库类型
  27. 'type' => 'mysql',
  28. // 服务器地址
  29. 'hostname' => '47.111.246.47',
  30. // 数据库名
  31. 'database' => 'bjedu',
  32. // 用户名
  33. 'username' => 'bjedu',
  34. // 密码
  35. 'password' => '123456',
  36. // 端口
  37. 'hostport' => '3306',
  38. // 数据库连接参数
  39. 'params' => [],
  40. // 数据库编码默认采用 utf8
  41. 'charset' => 'utf8mb4',
  42. // 数据库表前缀
  43. 'prefix' => '',
  44. // 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
  45. 'deploy' => 0,
  46. // 数据库读写是否分离 主从式有效
  47. 'rw_separate' => false,
  48. // 读写分离后 主服务器数量
  49. 'master_num' => 1,
  50. // 指定从服务器序号
  51. 'slave_no' => '',
  52. // 是否严格检查字段是否存在
  53. 'fields_strict' => true,
  54. // 是否需要断线重连
  55. 'break_reconnect' => false,
  56. // 监听SQL执行日志
  57. 'trigger_sql' => true,
  58. // 开启字段类型缓存
  59. //'fields_cache' => !app()->isDebug(),
  60. ],
  61. ],
  62. ];