Remove no effect model property to silence django 1.8 system check warning

This commit is contained in:
Tony Zhu 2015-04-14 16:25:20 -04:00
parent 11e4f1a7bd
commit 9600f457d8

View File

@ -715,7 +715,6 @@ class PreSetReply(models.Model):
queues = models.ManyToManyField(
Queue,
blank=True,
null=True,
help_text=_('Leave blank to allow this reply to be used for all '
'queues, or select those queues you wish to limit this reply to.'),
)
@ -757,7 +756,6 @@ class EscalationExclusion(models.Model):
queues = models.ManyToManyField(
Queue,
blank=True,
null=True,
help_text=_('Leave blank for this exclusion to be applied to all '
'queues, or select those queues you wish to exclude with this '
'entry.'),
@ -1061,7 +1059,6 @@ class IgnoreEmail(models.Model):
queues = models.ManyToManyField(
Queue,
blank=True,
null=True,
help_text=_('Leave blank for this e-mail to be ignored on all '
'queues, or select those queues you wish to ignore this e-mail '
'for.'),