Guest User

Untitled

a guest
Jul 22nd, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. # SQLite version 3.x
  2. # gem install sqlite3-ruby (not necessary on OS X Leopard)
  3. development:
  4. adapter: postgresql
  5. database: database_development
  6. username: postgres
  7. password: 123
  8. host: localhost
  9. timeout: 5000
  10. encoding: utf-8
  11.  
  12. # Warning: The database defined as "test" will be erased and
  13. # re-generated from your development database when you run "rake".
  14. # Do not set this db to the same as development or production.
  15. test:
  16. adapter: postgresql
  17. database: database_test
  18. username: postgres
  19. password: 123
  20. host: localhost
  21. timeout: 5000
  22. encoding:utf-8
  23.  
  24.  
  25. production:
  26. adapter: postgresql
  27. database: database_production
  28. username: postgres
  29. password: 123
  30. host: localhost
  31. timeout: 5000
  32. encoding: utf-8
Add Comment
Please, Sign In to add comment