database.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. return [
  3. // 默认使用的数据库连接配置
  4. 'default' => env('database.driver', 'mysql'),
  5. // 自定义时间查询规则
  6. 'time_query_rule' => [],
  7. // 自动写入时间戳字段
  8. // true为自动识别类型 false关闭
  9. // 字符串则明确指定时间字段类型 支持 int timestamp datetime date
  10. 'auto_timestamp' => true,
  11. // 时间字段取出后的默认时间格式
  12. 'datetime_format' => 'Y-m-d H:i:s',
  13. // 数据库连接配置信息
  14. 'connections' => [
  15. 'mysql' => [
  16. // 数据库类型
  17. 'type' => env('database.type', 'mysql'),
  18. // 服务器地址
  19. 'hostname' => env('database.hostname', '127.0.0.1'),
  20. // 数据库名
  21. 'database' => env('database.database', ''),
  22. // 用户名
  23. 'username' => env('database.username', 'root'),
  24. // 密码
  25. 'password' => env('database.password', ''),
  26. // 端口
  27. 'hostport' => env('database.hostport', '3306'),
  28. // 数据库连接参数
  29. 'params' => [],
  30. // 数据库编码默认采用utf8
  31. 'charset' => env('database.charset', 'utf8'),
  32. // 数据库表前缀
  33. 'prefix' => env('database.prefix', ''),
  34. // 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
  35. 'deploy' => 0,
  36. // 数据库读写是否分离 主从式有效
  37. 'rw_separate' => false,
  38. // 读写分离后 主服务器数量
  39. 'master_num' => 1,
  40. // 指定从服务器序号
  41. 'slave_no' => '',
  42. // 是否严格检查字段是否存在
  43. 'fields_strict' => true,
  44. // 是否需要断线重连
  45. 'break_reconnect' => false,
  46. // 监听SQL
  47. 'trigger_sql' => env('app_debug', true),
  48. // 开启字段缓存
  49. 'fields_cache' => false,
  50. // 字段缓存路径
  51. 'schema_cache_path' => app()->getRuntimePath() . 'schema' . DIRECTORY_SEPARATOR,
  52. ],
  53. // 更多的数据库配置信息
  54. ],
  55. ];