mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
migration: Prepare for backporting of migration 0700.
This follows our usual backporting scheme, occurring e.g. in #31468. We make the migration depend on the last migration in 10.x, and create a merge migration to avoid having multiple leafs.
This commit is contained in:
committed by
Tim Abbott
parent
0a2d7eedf8
commit
420b84e79c
@@ -257,7 +257,8 @@ class Migration(migrations.Migration):
|
||||
atomic = False
|
||||
|
||||
dependencies = [
|
||||
("zerver", "0699_scheduledmessage_reminder_target_message_id"),
|
||||
# Because this will be backported to 10.x, we only depend on the last migration in 10.x
|
||||
("zerver", "0697_empty_topic_name_for_dms_from_third_party_imports"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
|
10
zerver/migrations/0701_merge.py
Normal file
10
zerver/migrations/0701_merge.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("zerver", "0699_scheduledmessage_reminder_target_message_id"),
|
||||
("zerver", "0700_fix_user_role_system_groups"),
|
||||
]
|
||||
|
||||
operations = []
|
Reference in New Issue
Block a user