Skip to content

Commit

Permalink
bump up size of constraint error message
Browse files Browse the repository at this point in the history
  • Loading branch information
nicpottier committed Mar 1, 2011
1 parent 8eccf9d commit 4d6b681
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rapidsms_xforms/models.py
Expand Up @@ -855,7 +855,7 @@ class XFormFieldConstraint(models.Model):

type = models.CharField(max_length=10, choices=CONSTRAINT_CHOICES)
test = models.CharField(max_length=255, null=True)
message = models.CharField(max_length=100)
message = models.CharField(max_length=255)
order = models.IntegerField(default=1000)

def validate(self, value):
Expand Down

0 comments on commit 4d6b681

Please sign in to comment.