#38 User requests
* implements 4) "Comment fields should be of unlimited size"
This commit is contained in:
@@ -32,8 +32,7 @@ class Payment(BaseResource):
|
||||
"""
|
||||
amount = models.FloatField(validators=[MinValueValidator(limit_value=0.00)])
|
||||
due_on = models.DateField(null=True, blank=True)
|
||||
comment = models.CharField(
|
||||
max_length=1000,
|
||||
comment = models.TextField(
|
||||
null=True,
|
||||
blank=True,
|
||||
help_text="Refers to german money transfer 'Verwendungszweck'",
|
||||
|
||||
Reference in New Issue
Block a user