[Задача 12799] Добавил конфигурацию phinx

parent dd3e2dfb
<?php
require dirname(__FILE__) . '/configuration.php';
return [
'environments' => [
'default_database' => 'typos',
'typos' => [
'adapter' => DB_DRIVER,
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'host' => DB_HOSTNAME,
'name' => DB_DATABASE,
'pass' => DB_PASSWORD,
'user' => DB_USERNAME
]
],
'paths' => [
'migrations' => '%%PHINX_CONFIG_DIR%%/db/migrations',
'seeds' => '%%PHINX_CONFIG_DIR%%/db/seeds'
]
];
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment