Advertisement
Guest User

Untitled

a guest
Jul 29th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. # SQLite version 3.x
  2. # gem install sqlite3
  3. development:
  4. adapter: mysql2
  5. encoding: utf8
  6. database: blog_development
  7. username: root
  8. password: abcd
  9. host: localhost
  10. pool: 5
  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: mysql2
  17. encoding: utf8
  18. database: blog_development
  19. pool: 5
  20. username: root
  21. password: abcd
  22. host: localhost
  23.  
  24. production:
  25. adapter: mysql2
  26. encoding: utf8
  27. database: blog_development
  28. pool: 5
  29. username: root
  30. password: abcd
  31. host: localhost
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement