mirror of https://github.com/zulip/zulip.git
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:
parent
afecb2eca6
commit
d71742b7fe
|
@ -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 = [
|
||||
|
|
|
@ -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 = [
|
||||
|
|
Loading…
Reference in New Issue