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:
parent
3c6f3830b3
commit
0f82c95ca0
3 changed files with 19 additions and 0 deletions
18
django_mailbox/migrations/0009_alter_message_eml.py
Normal file
18
django_mailbox/migrations/0009_alter_message_eml.py
Normal 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'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue