Created
November 5, 2013 12:06
-
-
Save JanDintel/7318101 to your computer and use it in GitHub Desktop.
Configure oh-my-zsh ENV file with Rails aliasses
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.zshrc | |
alias migratetestdb='rake db:migrate RAILS_ENV=test' | |
alias droptestdb='rake db:drop RAILS_ENV=test; rake db:create RAILS_ENV=test; rake db:migrate RAILS_ENV=test' | |
alias resettestdb='rake db:reset RAILS_ENV=test' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment