2016-05-24 00:55:21 +02:00
|
|
|
from django.db import migrations, models
|
2021-02-08 23:39:19 -05:00
|
|
|
import django_mailbox2.utils
|
2016-05-24 00:55:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
|
|
dependencies = [
|
2021-02-08 23:39:19 -05:00
|
|
|
("django_mailbox2", "0004_bytestring_to_unicode"),
|
2016-05-24 00:55:21 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
|
migrations.AlterField(
|
2021-02-03 23:05:48 -05:00
|
|
|
model_name="messageattachment",
|
|
|
|
|
name="document",
|
|
|
|
|
field=models.FileField(
|
2021-02-08 23:39:19 -05:00
|
|
|
upload_to=django_mailbox2.utils.get_attachment_save_path,
|
2021-02-03 23:05:48 -05:00
|
|
|
verbose_name="Document",
|
|
|
|
|
),
|
2016-05-24 00:55:21 +02:00
|
|
|
),
|
|
|
|
|
]
|