Advertisement
Guest User

Untitled

a guest
Sep 6th, 2013
9,469
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 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. #development:
  7. # adapter: sqlite3
  8. # database: db/development.sqlite3
  9. # pool: 5
  10. # timeout: 5000
  11.  
  12. development:
  13. adapter: postgresql
  14. encoding: unicode
  15. hostname: localhost
  16. port: 5432
  17. database: railstestdb
  18. pool: 5
  19. username: postgres
  20. password: xxxxxx
  21.  
  22. # Warning: The database defined as "test" will be erased and
  23. # re-generated from your development database when you run "rake".
  24. # Do not set this db to the same as development or production.
  25. test:
  26. adapter: sqlite3
  27. database: db/test.sqlite3
  28. pool: 5
  29. timeout: 5000
  30.  
  31. production:
  32. adapter: sqlite3
  33. database: db/production.sqlite3
  34. pool: 5
  35. timeout: 5000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement