Guest User

Untitled

a guest
Jul 24th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 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. encoding: utf8
  6. database: blog_development
  7. pool: 5
  8. username: root
  9. password: root
  10. socket: /tmp/mysql.sock
  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: sqlite3
  17. database: db/test.sqlite3
  18. timeout: 5000
  19.  
  20. production:
  21. adapter: sqlite3
  22. database: db/production.sqlite3
  23. timeout: 5000
Add Comment
Please, Sign In to add comment