-
Notifications
You must be signed in to change notification settings - Fork 0
/
phinx.yml
38 lines (33 loc) · 821 Bytes
/
phinx.yml
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
paths:
migrations: '%%PHINX_CONFIG_DIR%%/db/migrations'
seeds: '%%PHINX_CONFIG_DIR%%/db/seeds'
templates:
file: 'db/migration.template'
environments:
default_migration_table: phinxlog
default_database: development
production:
adapter: mysql
host: localhost
name: production_db
user: root
pass: ''
port: 3306
charset: utf8
development:
adapter: mysql
host: '%%PHINX_DB_HOST%%'
name: '%%PHINX_DB_DATABASE%%'
user: '%%PHINX_DB_USER%%'
pass: '%%PHINX_DB_PASSWORD%%'
port: 3306
charset: utf8
testing:
adapter: mysql
host: 127.0.0.1
name: todo_test
user: root
pass: 'root'
port: 3306
charset: utf8
version_order: creation