mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-16 19:01:21 +02:00
Increase size of attachment filename. Fixes #164.
This commit is contained in:
@ -631,11 +631,12 @@ class Attachment(models.Model):
|
||||
file = models.FileField(
|
||||
_('File'),
|
||||
upload_to=attachment_path,
|
||||
max_length=1000,
|
||||
)
|
||||
|
||||
filename = models.CharField(
|
||||
_('Filename'),
|
||||
max_length=100,
|
||||
max_length=1000,
|
||||
)
|
||||
|
||||
mime_type = models.CharField(
|
||||
|
Reference in New Issue
Block a user