Guest User

Untitled

a guest
May 9th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. rake db:reset
  2.  
  3. export RAILS_ENV="development"
  4.  
  5. Dropped database 'db'
  6. Database 'db' does not exist
  7.  
  8. RAILS_ENV=development rake db:drop
  9.  
  10. Dropped database 'db'
  11. Database 'db' does not exist
  12.  
  13. default: &default
  14. adapter:mysql2
  15. pool: 5
  16. timeout: 5000
  17.  
  18. development:
  19. <<: *default
  20. database: db
  21. username: something
  22. password: something
  23. host: localhost
  24. port: 3306
  25.  
  26. test:
  27. <<: *default
  28. database: db_test
  29. username: something
  30. password: something
  31. host: localhost
  32. port: 3306
Add Comment
Please, Sign In to add comment