Created
September 17, 2016 23:13
-
-
Save ktravers/0f8d81a4e352c0ca3f122bbb2d3dcb56 to your computer and use it in GitHub Desktop.
default database yml
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
default: &default | |
adapter: postgresql | |
pool: 5 | |
timeout: 5000 | |
encoding: unicode | |
development: | |
<<: *default | |
database: app_name_development | |
test: | |
<<: *default | |
database: app_name_test | |
production: | |
<<: *default | |
database: app_name_production |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment