Guest User

Untitled

a guest
Nov 29th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1.  
  2. development:
  3. adapter: postgresql
  4. encoding: unicode
  5. host: localhost
  6. database: myapp_development
  7. username: <%= ENV["USER"] %>
  8. password:
  9. allow_concurrency: true
  10. pool: 5
  11. min_messages: warning
  12.  
  13. test:
  14. adapter: postgresql
  15. encoding: unicode
  16. host: localhost
  17. database: myapp_test
  18. username: <%= ENV["USER"] %>
  19. password:
  20. allow_concurrency: true
  21. pool: 5
  22. min_messages: error
Add Comment
Please, Sign In to add comment