-
Notifications
You must be signed in to change notification settings - Fork 3
/
phinx.php
54 lines (53 loc) · 1.31 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
47
48
49
50
51
52
53
54
<?php
return
[
'paths' => [
'migrations' => '%%PHINX_CONFIG_DIR%%/db/migrations',
'seeds' => '%%PHINX_CONFIG_DIR%%/db/seeds'
],
'environments' => [
'default_migration_table' => 'phinxlog',
'default_environment' => 'production',
'production' => [
'adapter' => 'mysql',
'host' => 'localhost',
'name' => 'gsit',
'user' => 'gsit',
'pass' => 'mypass',
'port' => '3306',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_general_ci',
],
'productionpgsql' => [
'adapter' => 'pgsql',
'host' => 'localhost',
'name' => 'gsit',
'user' => 'gsit',
'pass' => 'mypass',
'port' => '5432',
'charset' => 'utf8',
'collation' => 'utf8_general_ci',
],
// 'old' => [
// 'adapter' => 'mysql',
// 'host' => 'localhost',
// 'name' => 'glpi',
// 'user' => 'glpi',
// 'pass' => 'mypass',
// 'port' => '3306',
// 'charset' => 'utf8mb4',
// 'collation' => 'utf8_unicode_ci',
// ],
'tests' => [
'adapter' => 'mysql',
'host' => '127.0.0.1',
'name' => 'gsittests',
'user' => 'gsittests',
'pass' => 'gsittests',
'port' => '3306',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_general_ci',
],
],
'version_order' => 'creation'
];