-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphinx.php
More file actions
28 lines (26 loc) · 758 Bytes
/
phinx.php
File metadata and controls
28 lines (26 loc) · 758 Bytes
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
<?php
/**
* Настройки модуля для выполнения миграций базы данных.
*/
include 'bootstrap.php';
return
[
'paths' => [
'migrations' => 'db/migrations',
'seeds' => 'db/seeds'
],
'environments' => [
'default_migration_table' => 'phinxlog',
'default_environment' => 'development',
'development' => [
'adapter' => 'mysql',
'host' => config("DB_HOST", '127.0.0.1'),
'name' => config("DB_NAME", 'rsue_schedule'),
'user' => config("DB_USER", 'root'),
'pass' => config("DB_PASSWORD", ''),
'port' => '3306',
'charset' => 'utf8',
],
],
'version_order' => 'creation'
];