Files
mayan-edms/mayan/apps/sources/migrations/0008_auto_20150815_0351.py
2015-09-16 09:33:16 -04:00

27 lines
861 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('sources', '0007_emailbasemodel_metadata_attachment_name'),
]
operations = [
migrations.AlterField(
model_name='emailbasemodel',
name='metadata_attachment_name',
field=models.CharField(
default='metadata.yaml', help_text='Name of the attachment '
'that will contains the metadata type names and value pairs '
'to be assigned to the rest of the downloaded attachments. '
'Note: This attachment has to be the first attachment.',
max_length=128, verbose_name='Metadata attachment name'
),
preserve_default=True,
),
]