mirror of
https://github.com/BillyOutlast/Gazelle-Porn.git
synced 2026-02-04 02:51:19 +01:00
27 lines
779 B
PHP
27 lines
779 B
PHP
<?php
|
|
|
|
require(__DIR__ . '/classes/config.php');
|
|
require(__DIR__ . '/classes/const.php');
|
|
|
|
return
|
|
[
|
|
'paths' => [
|
|
'migrations' => '%%PHINX_CONFIG_DIR%%/db/migrations',
|
|
'seeds' => '%%PHINX_CONFIG_DIR%%/db/seeds'
|
|
],
|
|
'environments' => [
|
|
'default_migration_table' => 'phinxlog',
|
|
'default_database' => 'gazelle',
|
|
'gazelle' => [
|
|
'adapter' => 'mysql',
|
|
'host' => CONFIG['SQLHOST'],
|
|
'name' => CONFIG['SQLDB'],
|
|
'user' => CONFIG['SQLLOGIN'],
|
|
'pass' => CONFIG['SQLPASS'],
|
|
'port' => CONFIG['SQLPORT'],
|
|
'charset' => 'utf8'
|
|
],
|
|
],
|
|
'version_order' => 'creation'
|
|
];
|