mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-17 03:04:47 -05:00
28 lines
722 B
PHP
28 lines
722 B
PHP
<?php
|
|
|
|
require_once __DIR__ . '/lib/config.php';
|
|
|
|
return [
|
|
'paths' => [
|
|
'migrations' => '%%PHINX_CONFIG_DIR%%/misc/my-migrations',
|
|
],
|
|
'environments' => [
|
|
'migration_table' => 'phinxlog',
|
|
'default_environment' => 'gazelle',
|
|
'gazelle' => [
|
|
'adapter' => 'mysql',
|
|
'host' => MYSQL_HOST,
|
|
'port' => MYSQL_PORT,
|
|
'name' => MYSQL_DB,
|
|
'user' => MYSQL_PHINX_USER,
|
|
'pass' => MYSQL_PHINX_PASS,
|
|
'charset' => 'utf8mb4'
|
|
],
|
|
],
|
|
'version_order' => 'creation',
|
|
'feature_flags' => [
|
|
'unsigned_primary_keys' => false,
|
|
'column_null_default' => false,
|
|
],
|
|
];
|