Skip to content

Instantly share code, notes, and snippets.

@emre
Created March 29, 2013 10:40
Show Gist options
  • Save emre/5270131 to your computer and use it in GitHub Desktop.
Save emre/5270131 to your computer and use it in GitHub Desktop.
south için alias
function south_first() {
./manage.py schemamigration --initial "$@";
./manage.py migrate "$@";
}
function south_update() {
./manage.py schemamigration --auto "$@";
./manage.py migrate "$@";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment