mirror of https://github.com/zulip/zulip.git
migrations: Create realm reactivation ContentType if required.
Because Django's ContentType objects are, by default, created lazily when an actual object is created that will use them, this migration would fail on any server that actually had RealmReactivationStatus objects already, and had not yet created the ContentType for them. ContentType objects are very simple: zulip=> select * from django_content_type where model = 'realmreactivationstatus'; id | app_label | model ----+-----------+------------------------- 85 | zerver | realmreactivationstatus So we can simply patch this by using get_or_create.
This commit is contained in:
parent
98c7427bfc
commit
7661df20a9
|
@ -32,7 +32,7 @@ def fix_old_realm_reactivation_confirmations(
|
|||
return
|
||||
|
||||
# .content_type of these old Confirmation will be changed to this.
|
||||
realm_reactivation_status_content_type = ContentType.objects.get(
|
||||
realm_reactivation_status_content_type, created = ContentType.objects.get_or_create(
|
||||
model="realmreactivationstatus", app_label="zerver"
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue