1 Star 0 Fork 630

酸橘子 / 在线教育 - 网课系统 - 知识付费

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
phinx.php 695 Bytes
一键复制 编辑 原始数据 按行查看 历史
酷瓜云课堂 提交于 2021-03-09 17:27 . 更新phinx默认环境配置项
<?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_environment' => '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'],
],
],
];
PHP
1
https://gitee.com/sour-orange/course-tencent-cloud.git
git@gitee.com:sour-orange/course-tencent-cloud.git
sour-orange
course-tencent-cloud
在线教育 - 网课系统 - 知识付费
master

搜索帮助