2016-01-10 05:15:19 +01:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo 'Testing whether migrations are consistent with models'
|
2017-07-10 22:54:01 +02:00
|
|
|
|
2017-07-11 01:20:45 +02:00
|
|
|
new_auto_named_migrations=$(./manage.py showmigrations | grep -v '0004_auto_20160423_0400\|0005_auto_20160727_2333\|0052_auto_fix_realmalias_realm_nullable\|0089_auto_20170710_1353' | grep "_auto_20" || true)
|
2017-07-10 22:54:01 +02:00
|
|
|
# We check if there is any new migration with the 'auto' keyword in its name and
|
|
|
|
# cause a error to rename to a more meaningful name
|
|
|
|
if [ "$new_auto_named_migrations" != "" ]; then
|
|
|
|
echo "ERROR: New migrations with unclear automatically generated names."
|
|
|
|
echo "Please rename these migrations to have readable names:"
|
|
|
|
echo
|
|
|
|
echo "$new_auto_named_migrations" | sed 's/\[[x ]\] / /'
|
|
|
|
echo
|
|
|
|
echo 'See https://zulip.readthedocs.io/en/latest/schema-migrations.html for advice.'
|
|
|
|
echo
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2017-02-11 01:40:55 +01:00
|
|
|
if ! ./manage.py makemigrations --check --dry-run; then
|
2016-01-10 05:15:19 +01:00
|
|
|
echo
|
2017-04-05 11:49:21 +02:00
|
|
|
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.'
|
2016-01-10 05:15:19 +01:00
|
|
|
echo
|
2016-06-15 18:19:54 +02:00
|
|
|
exit 1
|
2016-01-10 05:15:19 +01:00
|
|
|
else
|
|
|
|
echo "Success! Migrations are consistent with models."
|
|
|
|
fi
|