From daddf4a930bce5a4e59ac82ed0aec7ba561a09ea Mon Sep 17 00:00:00 2001 From: Fergal Moran Date: Tue, 2 Sep 2014 21:42:01 +0100 Subject: [PATCH 1/2] Added djmigrate alias --- bash_aliases | 1 + 1 file changed, 1 insertion(+) diff --git a/bash_aliases b/bash_aliases index d9c4f1f..f326dcd 100644 --- a/bash_aliases +++ b/bash_aliases @@ -2,6 +2,7 @@ #Django stuff alias djrun="python manage.py runserver_plus 0.0.0.0:8000" alias djshell="python manage.py shell_plus --use-pythonrc --ipython" +alias djmigrate="python manage.py schemamigration spa auto" alias rmdb="find . -name \*\'s\ conflicted\ copy\ \* -exec rm {} \;" alias server="python -m SimpleHTTPServer 9999" From ddf1c80dd95e3b246de06619de0f6513456d1391 Mon Sep 17 00:00:00 2001 From: Fergal Moran Date: Tue, 2 Sep 2014 21:42:45 +0100 Subject: [PATCH 2/2] Added djmigrate alias --- bash_aliases | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash_aliases b/bash_aliases index f326dcd..542a99b 100644 --- a/bash_aliases +++ b/bash_aliases @@ -2,7 +2,7 @@ #Django stuff alias djrun="python manage.py runserver_plus 0.0.0.0:8000" alias djshell="python manage.py shell_plus --use-pythonrc --ipython" -alias djmigrate="python manage.py schemamigration spa auto" +alias djmigrate="python manage.py schemamigration spa --auto" alias rmdb="find . -name \*\'s\ conflicted\ copy\ \* -exec rm {} \;" alias server="python -m SimpleHTTPServer 9999"