Guest User

Untitled

a guest
Jun 10th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. # SQLite version 3.x
  2. # gem install sqlite3-ruby (not necessary on OS X Leopard)
  3. development:
  4. adapter: mysql
  5. database: depot_development
  6. username: root
  7. password:
  8. host: localhost
  9.  
  10. # Warning: The database defined as "test" will be erased and
  11. # re-generated from your development database when you run "rake".
  12. # Do not set this db to the same as development or production.
  13. test:
  14. adapter: sqlite3
  15. database: db/test.sqlite3
  16. pool: 5
  17. timeout: 5000
  18.  
  19. production:
  20. adapter: sqlite3
  21. database: db/production.sqlite3
  22. pool: 5
  23. timeout: 5000
Add Comment
Please, Sign In to add comment