migrations: Add missing dependency.

This migration references the "confirmation" app for the first time,
which means we must have migrated at least part of it by this point.

Set the migration to depend on the latest "confirmation" migration at
the time of this migration.
This commit is contained in:
Alex Vandiver 2024-08-01 04:00:43 +00:00 committed by Tim Abbott
parent 2f726b20ed
commit 2bc118892a
1 changed files with 1 additions and 0 deletions

View File

@ -67,6 +67,7 @@ class Migration(migrations.Migration):
atomic = False
dependencies = [
("confirmation", "0011_alter_confirmation_expiry_date"),
("zerver", "0382_create_role_based_system_groups"),
]