Guest User

Untitled

a guest
Aug 26th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 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: pages_dev
  6. username: root
  7. password: root
  8. host: localhost
  9. pool: 5
  10. timeout: 5000
  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: mysql
  17. host: localhost
  18. database: pages_dev
  19. username: root
  20. password: root
  21. pool: 5
  22. timeout: 5000
  23.  
  24. production:
  25. adapter: sqlite3
  26. database: db/production.sqlite3
  27. pool: 5
  28. timeout: 5000
Add Comment
Please, Sign In to add comment