mirror of https://github.com/zulip/zulip.git
13 lines
424 B
Bash
Executable File
13 lines
424 B
Bash
Executable File
#!/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 `./tools/renumber-migrations`.'
|
|
echo 'See http://zulip.readthedocs.io/en/latest/schema-migrations.html for details.'
|
|
echo
|
|
exit 1
|
|
else
|
|
echo "Success! Migrations are consistent with models."
|
|
fi
|