Skip to content

Instantly share code, notes, and snippets.

@fcoury
Forked from stephencelis/gist:72783
Created July 17, 2009 14:21
Show Gist options
  • Select an option

  • Save fcoury/149075 to your computer and use it in GitHub Desktop.

Select an option

Save fcoury/149075 to your computer and use it in GitHub Desktop.
# ~/.bash_profile
sg() {
local migration=`script/generate $@ | awk ' /db\/migrate\//{print $NF}'`
if [ $migration ]; then $EDITOR $migration && rake db:migrate; fi
}
alias sgmo="sg model $@"
alias sgmi="sg migration $@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment