Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. default: &default
  2. adapter: postgresql
  3. pool: 5
  4. timeout: 5000
  5. host: localhost
  6. username: vagrant
  7. password: vagrant
  8.  
  9. development:
  10. <<: *default
  11. database: database_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: database_test
  19.  
  20. #production:
  21. # <<: *default
  22. # database: db/production.sqlite3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement