-
Notifications
You must be signed in to change notification settings - Fork 0
/
phinx.php
46 lines (44 loc) · 1.61 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
36
37
38
39
40
41
42
43
44
45
46
<?php declare(strict_types=1);
require __DIR__ . '/bootstrap/app.php';
return
[
'paths' => [
'migrations' => 'database/migrations',
'seeds' => 'database/seeds'
],
'environments' => [
'default_migration_table' => 'phinxlog',
'default_environment' => 'development',
// 'production' => [
// 'adapter' => 'mysql',
// 'host' => 'localhost',
// 'name' => 'production_db',
// 'user' => 'root',
// 'pass' => '',
// 'port' => '3306',
// 'charset' => 'utf8',
// ],
'development' => [
'adapter' => $_ENV['DB_CONNECTION'],
'host' => $_ENV['DB_HOST'],
'name' => $_ENV['DB_NAME'],
'user' => $_ENV['DB_USERNAME'],
'pass' => $_ENV['DB_PASSWORD'],
'port' => $_ENV['DB_PORT'],
'charset' => $_ENV['DB_CHARSET'],
'additionalOptions' => [
PDO::MYSQL_ATTR_SSL_KEY => null,
]
],
// 'testing' => [
// 'adapter' => 'mysql',
// 'host' => 'localhost',
// 'name' => 'testing_db',
// 'user' => 'root',
// 'pass' => '',
// 'port' => '3306',
// 'charset' => 'utf8',
// ]
],
'version_order' => 'creation'
];