check-database-compatibility: Ignore twofactor typo.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2023-08-23 18:48:43 -07:00 committed by Tim Abbott
parent 29bb346480
commit ead7b9177a
1 changed files with 4 additions and 0 deletions

View File

@ -120,6 +120,10 @@ missing.difference_update(
# https://github.com/python-social-auth/social-app-django/pull/25
missing.discard(("default", "0005_auto_20160727_2333"))
# This was a typo (twofactor for two_factor) corrected in
# https://github.com/jazzband/django-two-factor-auth/pull/642
missing.discard(("twofactor", "0001_squashed_0008_delete_phonedevice"))
for key, migration in loader.disk_migrations.items():
missing.discard(key)
missing.difference_update(migration.replaces)