database.php 835 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. return [
  3. 'type' => 'mysql',
  4. 'hostname' => 'localhost',
  5. 'database' => 'root',
  6. 'username' => 'root',
  7. 'password' => 'root',
  8. 'hostport' => '',
  9. 'dsn' => '',
  10. 'params' => [],
  11. 'charset' => 'utf8',
  12. 'prefix' => 'muyu_',
  13. 'debug' => false,
  14. 'deploy' => 0,
  15. 'rw_separate' => false,
  16. 'master_num' => 1,
  17. 'slave_no' => '',
  18. 'read_master' => false,
  19. 'fields_strict' => true,
  20. 'resultset_type' => 'collection',
  21. 'auto_timestamp' => false,
  22. 'datetime_format' => 'Y-m-d H:i:s',
  23. 'sql_explain' => false,
  24. 'builder' => '',
  25. 'query' => '\\think\\db\\Query',
  26. 'break_reconnect' => false,
  27. 'break_match_str' => [],
  28. ];