-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathphinx.yml
More file actions
25 lines (22 loc) · 828 Bytes
/
phinx.yml
File metadata and controls
25 lines (22 loc) · 828 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
/* ATTN: This file must *not* contain any real credentials,
as this whole directory is deployed to public web server
and committed to source control.
NO_AUTO_VALUE_ON_ZERO required in mysql_attr_init_command because
we do weird stuff like inserting 0 ids in auto-incremented columns
and have date columns defaulting to 0000-00-00
*/
paths:
migrations: '%%PHINX_CONFIG_DIR%%/db/migrations'
environments:
default_migration_table: phinxlog
default_environment: development
development:
adapter: mysql
host: 127.0.0.1
name: dropapp_dev
user: root
pass: dropapp_root
port: 9906
charset: utf8
mysql_attr_init_command: "SET SQL_MODE = 'NO_AUTO_VALUE_ON_ZERO'"
version_order: creation