19 lines
418 B
PHP
19 lines
418 B
PHP
<?php
|
|
|
|
return
|
|
[
|
|
'paths' => [
|
|
'migrations' => '%%PHINX_CONFIG_DIR%%/db/migrations',
|
|
'seeds' => '%%PHINX_CONFIG_DIR%%/db/seeds'
|
|
],
|
|
'environments' => [
|
|
'default_migration_table' => 'phinxlog',
|
|
'default_environment' => 'main',
|
|
'main' => [
|
|
'adapter' => 'sqlite',
|
|
'name' => __DIR__ . '/data',
|
|
],
|
|
],
|
|
'version_order' => 'creation'
|
|
];
|