Feature: Allow make-migrations in Makefile

This commit is contained in:
winkidney
2019-01-22 01:35:12 -08:00
parent 2ef9df9cfc
commit c285c236e3

View File

@@ -4,6 +4,8 @@ backup-all:
pipenv run python manage.py dumpdata > db-backup.all.json
migrate:
pipenv run python manage.py migrate
makemigrations:
pipenv run python manage.py makemigrations
recover-all:
pipenv run python manage.py loaddata db-backup.all.json
bootstrap: