Created
May 4, 2016 03:05
-
-
Save lira92/e3696d4393fbe418d63b95e3b2ddbc6d to your computer and use it in GitHub Desktop.
Arquivo de configuração do Phinx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
paths: | |
migrations: %%PHINX_CONFIG_DIR%%/db/migrations | |
seeds: %%PHINX_CONFIG_DIR%%/db/seeds | |
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: localhost | |
name: development_db | |
user: root | |
pass: '' | |
port: 3306 | |
charset: utf8 | |
testing: | |
adapter: mysql | |
host: localhost | |
name: testing_db | |
user: root | |
pass: '' | |
port: 3306 | |
charset: utf8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment