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

@ -0,0 +1,18 @@
# Generated by Django 3.2.23 on 2023-12-16 23:27
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('django_mailbox', '0008_auto_20190219_1553'),
]
operations = [
migrations.AlterField(
model_name='message',
name='eml',
field=models.FileField(blank=True, help_text='Original full content of message', null=True, upload_to='messages', verbose_name='Raw message contents'),
),
]