Advertisement
Guest User

Untitled

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