confirmation: Move zerver dependency to correct migration.

It's the foreign key relationship that needs to be synchronized with
the BigInt state of the releavnt zerver tables.
This commit is contained in:
Tim Abbott 2024-08-13 12:32:18 -07:00
parent afecb2eca6
commit d71742b7fe
2 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,6 @@ class Migration(migrations.Migration):
dependencies = [
("confirmation", "0013_alter_realmcreationkey_id"),
("contenttypes", "0002_remove_content_type_name"),
("zerver", "0552_remove_realm_private_message_policy"),
]
operations = [

View File

@ -4,6 +4,8 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("confirmation", "0014_confirmation_confirmatio_content_80155a_idx"),
# We want to be linking to tables that are already bigints
("zerver", "0531_convert_most_ids_to_bigints"),
]
operations = [