Adding migrations functionality to PHPCI using Phinx
This commit is contained in:
parent
a62307250f
commit
d63a029b74
10 changed files with 608 additions and 90 deletions
29
phinx.php
Normal file
29
phinx.php
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<?php
|
||||
|
||||
require_once(dirname(__FILE__) . '/bootstrap.php');
|
||||
|
||||
$writeServers = $config->get('b8.database.servers.write');
|
||||
|
||||
if (!is_array($writeServers)) {
|
||||
$writeServers = array($writeServers);
|
||||
}
|
||||
|
||||
$conf = array(
|
||||
'paths' => array(
|
||||
'migrations' => 'PHPCI/Migrations',
|
||||
),
|
||||
|
||||
'environments' => array(
|
||||
'default_migration_table' => 'migration',
|
||||
'default_database' => 'phpci',
|
||||
'phpci' => array(
|
||||
'adapter' => 'mysql',
|
||||
'host' => end($writeServers),
|
||||
'name' => $config->get('b8.database.name'),
|
||||
'user' => $config->get('b8.database.username'),
|
||||
'pass' => $config->get('b8.database.password'),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
return $conf;
|
||||
Loading…
Add table
Add a link
Reference in a new issue