Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. # SQLite version 3.x
  2. # gem install sqlite3
  3. #
  4. # Ensure the SQLite 3 gem is defined in your Gemfile
  5. # gem 'sqlite3'
  6. #
  7. default: &default
  8. adapter: postgresql
  9. pool: 5
  10. timeout: 5000
  11.  
  12. development:
  13. <<: *default
  14. database: mystore_development
  15. host: localhost
  16. username: mystore
  17. password: admin
  18.  
  19. # Warning: The database defined as "test" will be erased and
  20. # re-generated from your development database when you run "rake".
  21. # Do not set this db to the same as development or production.
  22. test:
  23. <<: *default
  24. database: mystore_test
  25. host: localhost
  26. username: mystore
  27. password: admin
  28.  
  29. production:
  30. <<: *default
  31. database: db/production.sqlite3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement