Created
February 26, 2010 01:39
-
-
Save eddorre/315295 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
function migrate() { | |
if [[ $1 == '' ]]; then | |
rake db:migrate RAILS_ENV=development && rake db:migrate RAILS_ENV=test | |
else | |
rake db:migrate RAILS_ENV=$1 | |
fi | |
} | |
function rollback() { | |
if [[ $1 == '' ]]; then | |
rake db:rollback RAILS_ENV=development && rake db:rollback RAILS_ENV=test | |
else | |
rake db:rollback RAILS_ENV=$1 | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment