Guest User

Untitled

a guest
Oct 13th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. common: &common
  2. adapter: postgresql
  3. host: localhost
  4. port: 5432
  5. username:
  6. password:
  7. encoding: utf8
  8. template: template_postgis
  9. pool: 5
  10. timeout: 5000
  11.  
  12. development:
  13. <<: *common
  14. database: development
  15.  
  16. # Warning: The database defined as "test" will be erased and
  17. # re-generated from your development database when you run "rake".
  18. # Do not set this db to the same as development or production.
  19. test:
  20. <<: *common
  21. database: test
  22.  
  23. production:
  24. <<: *common
  25. database: production
Add Comment
Please, Sign In to add comment