1 Star 0 Fork 262

fred / jitamin

forked from jitamin / jitamin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
phinx.php 1.76 KB
一键复制 编辑 原始数据 按行查看 历史
lianguan 提交于 2018-01-25 17:23 . Fix dotenv
<?php
/*
* This file is part of Jitamin.
*
* Copyright (C) Jitamin Team
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
|--------------------------------------------------------------------------
| Please DO NOT modify me.
|--------------------------------------------------------------------------
*/
// Register The Auto Loader
require __DIR__.'/bootstrap/autoload.php';
$db = require __DIR__.'/config/config.php';
return [
'paths' => [
'migrations' => 'database/migrations',
'seeds' => 'database/seeds',
],
'environments' => [
'default_migration_table' => 'migrations',
'default_database' => $db['db_driver'],
'mysql' => [
'adapter' => 'mysql',
'host' => $db['db_connections']['mysql']['host'],
'name' => $db['db_connections']['mysql']['database'],
'user' => $db['db_connections']['mysql']['username'],
'pass' => $db['db_connections']['mysql']['password'],
'port' => $db['db_connections']['mysql']['port'],
'charset' => 'utf8',
],
'pgsql' => [
'adapter' => 'pgsql',
'host' => $db['db_connections']['pgsql']['host'],
'name' => $db['db_connections']['pgsql']['database'],
'user' => $db['db_connections']['pgsql']['username'],
'pass' => $db['db_connections']['pgsql']['password'],
'port' => $db['db_connections']['pgsql']['port'],
'charset' => 'utf8',
],
'sqlite' => [
'adapter' => 'sqlite',
'name' => $db['db_connections']['sqlite']['database'],
],
],
];
PHP
1
https://gitee.com/hcicr/jitamin.git
git@gitee.com:hcicr/jitamin.git
hcicr
jitamin
jitamin
master

搜索帮助