-
Notifications
You must be signed in to change notification settings - Fork 0
/
phinx.php
35 lines (32 loc) · 1.02 KB
/
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
27
28
29
30
31
32
33
34
35
<?php
declare(strict_types=1);
Dotenv\Dotenv::createImmutable(__DIR__)->load();
return [
'paths' => [
'migrations' => '%%PHINX_CONFIG_DIR%%/db/migrations',
'seeds' => '%%PHINX_CONFIG_DIR%%/db/seeds',
],
'environments' => [
'default_migration_table' => 'phinxlog',
'default_environment' => 'development',
'production' => [
'adapter' => $_SERVER['DB_ADAPTER'],
'host' => $_SERVER['DB_HOST'],
'name' => 'shortly',
'user' => $_SERVER['DB_USER'],
'pass' => $_SERVER['DB_PWD'],
'port' => $_SERVER['DB_PORT'],
'charset' => 'utf8',
],
'development' => [
'adapter' => $_SERVER['DB_ADAPTER'],
'host' => $_SERVER['DB_HOST'],
'name' => 'shortly',
'user' => $_SERVER['DB_USER'],
'pass' => $_SERVER['DB_PWD'],
'port' => $_SERVER['DB_PORT'],
'charset' => 'utf8',
],
],
'version_order' => 'creation',
];