mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 03:32:47 +08:00
31 lines
692 B
PHP
31 lines
692 B
PHP
<?php
|
|
|
|
$config = require __DIR__ . '/config/config.php';
|
|
|
|
return [
|
|
|
|
'version_order' => 'creation',
|
|
|
|
'paths' => [
|
|
'migrations' => 'db/migrations',
|
|
'seeds' => 'db/seeds',
|
|
],
|
|
|
|
'environments' => [
|
|
|
|
'default_migration_table' => 'kg_migration',
|
|
|
|
'default_database' => 'production',
|
|
|
|
'production' => [
|
|
'adapter' => 'mysql',
|
|
'host' => $config['db']['host'],
|
|
'port' => $config['db']['port'],
|
|
'name' => $config['db']['dbname'],
|
|
'user' => $config['db']['username'],
|
|
'pass' => $config['db']['password'],
|
|
'charset' => $config['db']['charset'],
|
|
],
|
|
],
|
|
|
|
]; |