#!/bin/bash set -e echo 'Testing whether migrations are consistent with models' if ! ./manage.py makemigrations --check --dry-run; then echo echo 'ERROR: Migrations are not consistent with models! Fix with `./manage.py makemigrations`.' echo exit 1 else echo "Success! Migrations are consistent with models." fi