diff --git a/mayan/apps/converter/migrations/0010_auto_20150815_0351.py b/mayan/apps/converter/migrations/0010_auto_20150815_0351.py new file mode 100644 index 0000000000..61d51fca21 --- /dev/null +++ b/mayan/apps/converter/migrations/0010_auto_20150815_0351.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('converter', '0009_auto_20150714_2228'), + ] + + operations = [ + migrations.AlterField( + model_name='transformation', + name='name', + field=models.CharField(max_length=128, verbose_name='Name', choices=[('rotate', 'Rotate: degrees'), ('zoom', 'Zoom: percent'), ('resize', 'Resize: width, height'), ('crop', 'Crop: left, top, right, bottom')]), + preserve_default=True, + ), + ] diff --git a/mayan/apps/document_indexing/migrations/0009_auto_20150815_0351.py b/mayan/apps/document_indexing/migrations/0009_auto_20150815_0351.py new file mode 100644 index 0000000000..eff963d238 --- /dev/null +++ b/mayan/apps/document_indexing/migrations/0009_auto_20150815_0351.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('document_indexing', '0008_auto_20150729_1515'), + ] + + operations = [ + migrations.AlterField( + model_name='indextemplatenode', + name='expression', + field=models.CharField(help_text="Enter a template to render. Use Django's default templating language (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)", max_length=128, verbose_name='Indexing expression'), + preserve_default=True, + ), + ] diff --git a/mayan/apps/sources/migrations/0008_auto_20150815_0351.py b/mayan/apps/sources/migrations/0008_auto_20150815_0351.py new file mode 100644 index 0000000000..6afed5c09c --- /dev/null +++ b/mayan/apps/sources/migrations/0008_auto_20150815_0351.py @@ -0,0 +1,20 @@ +# -*- 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, + ), + ]