47 lines
1.5 KiB
PHP
47 lines
1.5 KiB
PHP
<?php
|
|
|
|
return
|
|
[
|
|
'paths' => [
|
|
'migrations' => '%%PHINX_CONFIG_DIR%%/resources/database/migrations',
|
|
'seeds' => '%%PHINX_CONFIG_DIR%%/resources/database/seeds'
|
|
],
|
|
'environments' => [
|
|
'default_migration_table' => 'phinxlog',
|
|
'default_environment' => 'development',
|
|
'production' => [
|
|
'adapter' => 'mysql',
|
|
'host' => $_ENV['DB_HOST'] ?? 'localhost',
|
|
'name' => $_ENV['DB_DATABASE'],
|
|
'user' => $_ENV['DB_USER'],
|
|
'pass' => $_ENV['DB_PASSWORD'],
|
|
'port' => '3306',
|
|
'charset' => 'utf8',
|
|
],
|
|
'development' => [
|
|
'adapter' => 'mysql',
|
|
'host' => $_ENV['DB_HOST'] ?? 'localhost',
|
|
'name' => $_ENV['DB_DATABASE'],
|
|
'user' => $_ENV['DB_USER'],
|
|
'pass' => $_ENV['DB_PASSWORD'],
|
|
'port' => '3306',
|
|
'charset' => 'utf8',
|
|
],
|
|
'testing' => [
|
|
'adapter' => 'mysql',
|
|
'host' => $_ENV['DB_HOST'] ?? 'localhost',
|
|
'name' => $_ENV['DB_DATABASE'],
|
|
'user' => $_ENV['DB_USER'],
|
|
'pass' => $_ENV['DB_PASSWORD'],
|
|
'port' => '3306',
|
|
'charset' => 'utf8',
|
|
]
|
|
],
|
|
'version_order' => 'creation',
|
|
'schema_file' => '%%PHINX_CONFIG_DIR%%/resources/database/schema.php',
|
|
'foreign_keys' => true,
|
|
'generate_migration_name' => true,
|
|
'default_migration_prefix' => 'incoviba_',
|
|
'mark_generated_migration' => true
|
|
];
|