toutpratique/migration.php
Marion Muszynski 159de5b922 nw modif suite
2015-10-19 17:58:51 +02:00

30 lines
892 B
PHP

<?php
# WINDOWS : vendor/bin/phinx.bat migrate -e local --configuration migration.php
# LINUX A TEST php vendor/bin/phinx migrate -e local --configuration migration.php
require 'config/settings.inc.php';
return array(
"paths" => array(
"migrations" => "migrations"
),
"environments" => array(
"default_migration_table" => "phinxlog",
"default_database" => "toutpratique",
"local" => array(
"adapter" => "mysql",
"host" => _DB_SERVER_,
"name" => _DB_NAME_,
"user" => _DB_USER_,
"pass" => _DB_PASSWD_,
"port" => 3306
),
"dev" => array(
"adapter" => "mysql",
"host" => _DB_SERVER_,
"name" => 'toutpratique_dev',
"user" => _DB_USER_,
"pass" => _DB_PASSWD_,
"port" => 3306
)
)
);