Guest User

Untitled

a guest
Apr 14th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. ## mysql database.yml
  2.  
  3. development:
  4. adapter: mysql
  5. database: example_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: mysql
  15. database: example_test
  16. username: root
  17. password:
  18. host: localhost
  19.  
  20. production:
  21. adapter: mysql
  22. database: example_production
  23. username: root
  24. password:
  25. host: localhost
Add Comment
Please, Sign In to add comment