Add missing migrations.

This commit is contained in:
Roberto Rosario
2015-08-14 23:53:49 -04:00
parent 8cc685ede7
commit b382227ec0
3 changed files with 60 additions and 0 deletions

View File

@@ -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,
),
]

View File

@@ -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,
),
]

View File

@@ -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,
),
]