zerver: Remove now-unnecessary dependency in migration 0383.

It's not possible to directly upgrade from pre-5.3 versions to main,
since they do not have any supported OSes in common. Thus, this
dependency on the confirmation model, which risks creating a circular
dependency if we squash migrations, can be removed.
This commit is contained in:
Tim Abbott 2024-08-16 18:47:32 -07:00
parent 73e5364838
commit 547377a295
1 changed files with 0 additions and 1 deletions

View File

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