Files
money/app/phinx.php
2021-03-16 00:50:51 -03:00

43 lines
1.2 KiB
PHP

<?php
return
[
'paths' => [
'migrations' => '%%PHINX_CONFIG_DIR%%/../db/migrations',
'seeds' => '%%PHINX_CONFIG_DIR%%/../db/seeds'
],
'schema_file' => '%%PHINX_CONFIG_DIR%%/../db/schema.php',
'environments' => [
'default_migration_table' => 'phinxlog',
'default_environment' => 'development',
'production' => [
'adapter' => 'mysql',
'host' => 'localhost',
'name' => 'production_db',
'user' => 'root',
'pass' => '',
'port' => '3306',
'charset' => 'utf8',
],
'development' => [
'adapter' => 'mysql',
'host' => 'localhost',
'name' => 'money_dev',
'user' => 'money',
'pass' => 'money_pass',
'port' => '3307',
'charset' => 'utf8',
],
'testing' => [
'adapter' => 'mysql',
'host' => 'localhost',
'name' => 'testing_db',
'user' => 'root',
'pass' => '',
'port' => '3306',
'charset' => 'utf8',
]
],
'version_order' => 'creation'
];