-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphinx.yml
37 lines (33 loc) · 914 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
paths:
migrations: %%PHINX_CONFIG_DIR%%/datebase/migrations
seeds: %%PHINX_CONFIG_DIR%%/datebase/seeds
templates:
migration: %%PHINX_CONFIG_DIR%%/console/commands/Scaffolds/templates/Migration.template.php.dist
seeder: %%PHINX_CONFIG_DIR%%/console/commands/Scaffolds/templates/Seeder.template.php.dist
environments:
default_migration_table: migration
default_database: development
production:
adapter: mysql
host: localhost
name: homestead
user: homestead
pass: secret
port:
charset: utf8
development:
adapter: mysql
host: localhost
name: homestead
user: homestead
pass: secret
port:
charset: utf8
testing:
adapter: mysql
host: localhost
name: homestead
user: homestead
pass: secret
port:
charset: utf8