Files
molenda.net/phinx.php
T
2026-05-13 22:43:29 +02:00

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'
];