From c285c236e3fb73c4e0265326481eee71ffa35beb Mon Sep 17 00:00:00 2001 From: winkidney Date: Tue, 22 Jan 2019 01:35:12 -0800 Subject: [PATCH] Feature: Allow make-migrations in Makefile --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 7300080..3086ae2 100644 --- a/Makefile +++ b/Makefile @@ -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: