Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. default: &default
  2. adapter: postgresql
  3. pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
  4. timeout: 5000
  5. username: postgres
  6. password: mypassword
  7. host: localhost
  8. development:
  9. <<: *default
  10. database: my_db_development
  11. test:
  12. <<: *default
  13. database: my_db_test
  14.  
  15. production:
  16. <<: *default
  17. database: my_db_production
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement