forked from Mosasauroidea/GazellePW
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phinx.php
26 lines (24 loc) · 779 Bytes
/
phinx.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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'
];