Update migration file to indicate there is no reverse function in case of a rollback

This commit is contained in:
beeankha
2019-06-18 11:47:53 -04:00
parent e3750f541e
commit 40840e3789

View File

@@ -38,7 +38,8 @@ class Migration(migrations.Migration):
field=models.ManyToManyField(blank=True, related_name='unifiedjobtemplate_notification_templates_for_started', to='main.NotificationTemplate'), field=models.ManyToManyField(blank=True, related_name='unifiedjobtemplate_notification_templates_for_started', to='main.NotificationTemplate'),
), ),
# Separate out "any" notifications into "success" and "error" before the "any" state gets deleted. # Separate out "any" notifications into "success" and "error" before the "any" state gets deleted.
migrations.RunPython(forwards_split_unified_job_template_any, forwards_split_organization_any), migrations.RunPython(forwards_split_unified_job_template_any, None),
migrations.RunPython(forwards_split_organization_any, None),
migrations.RemoveField( migrations.RemoveField(
model_name='organization', model_name='organization',
name='notification_templates_any', name='notification_templates_any',