Guest User

Untitled

a guest
Jan 22nd, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. development:
  2. adapter: mysql2
  3. encoding: utf8
  4. reconnect: false
  5. database: app_development
  6. pool: 5
  7. username: app_user
  8. password: laminate
  9. host: localhost
  10. port: 3306
  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. reconnect: false
  19. database: app_test
  20. pool: 5
  21. username: app_user
  22. password: laminate
  23. host: localhost
  24. port: 3306
  25.  
  26. production:
  27. adapter: mysql2
  28. encoding: utf8
  29. reconnect: false
  30. database: app
  31. pool: 5
  32. username: app_user
  33. password: laminate
  34. host: localhost
  35. port: 3306
Add Comment
Please, Sign In to add comment