1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00

Make eml field Blankable

This commit is contained in:
Pascal F 2023-12-17 06:27:45 +01:00
parent 3c6f3830b3
commit 0f82c95ca0
No known key found for this signature in database
GPG key ID: 3C576B538F890866
3 changed files with 19 additions and 0 deletions

View file

@ -576,6 +576,7 @@ class Message(models.Model):
eml = models.FileField(
_('Raw message contents'),
null=True,
blank=True,
upload_to="messages",
help_text=_('Original full content of message')
)