mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-09 22:38:19 +02:00
19 lines
505 B
Python
19 lines
505 B
Python
|
|
# 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'),
|
||
|
|
),
|
||
|
|
]
|