Fixed makefile

Added "makemigrations" for each app
This commit is contained in:
Oliver Walters 2017-04-14 23:30:08 +10:00
parent e641a913f2
commit 9e3fa00fdd

View File

@ -15,7 +15,11 @@ test:
python InvenTree/manage.py test --noinput
migrate:
python InvenTree/manage.py makemigrations
python InvenTree/manage.py makemigrations part
python InvenTree/manage.py makemigrations project
python InvenTree/manage.py makemigrations stock
python InvenTree/manage.py makemigrations supplier
python InvenTree/manage.py makemigrations track
python InvenTree/manage.py migrate --run-syncdb
python InvenTree/manage.py check