We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7d979c commit 64c4199Copy full SHA for 64c4199
1 file changed
ietf/community/models.py
@@ -119,12 +119,8 @@ class Rule(models.Model):
119
120
community_list = models.ForeignKey(CommunityList)
121
cached_ids = models.ManyToManyField(Document)
122
-
123
- rule_type = models.CharField(
124
- max_length=30,
125
- choices=TYPES_OF_RULES)
126
- value = models.CharField(
127
- max_length=255)
+ rule_type = models.CharField(max_length=30, choices=TYPES_OF_RULES)
+ value = models.CharField(max_length=255)
128
129
class Meta:
130
unique_together= ("community_list", "rule_type", "value")
0 commit comments