Guest User

Untitled

a guest
Jun 18th, 2018
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. production:
  2. adapter: mysql
  3. database: auction_production
  4. username: production
  5. password: xxxxxxxxxxxxxxx
  6. host: 10.7.1.100
  7. # socket: /tmp/mysql.sock
  8. # encoding: utf8
  9.  
  10. staging:
  11. adapter: mysql
  12. database: auction_test
  13. username: staging
  14. password: xxxxxxxxxxxxxxx
  15. host: 192.168.1.114
  16.  
  17.  
  18. task :ds_migrate, :hosts=>"deploy@ds449.blueboxgrid.com" do
  19. run <<-CMD
  20. cd #{current_path} &&
  21. rake RAILS_ENV=production db:migrate
  22. CMD
  23. end
Add Comment
Please, Sign In to add comment