diff --git a/mayan/apps/linking/migrations/0005_auto_20150729_2344.py b/mayan/apps/linking/migrations/0005_auto_20150729_2344.py new file mode 100644 index 0000000000..079424ba3e --- /dev/null +++ b/mayan/apps/linking/migrations/0005_auto_20150729_2344.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('linking', '0004_auto_20150708_0320'), + ] + + operations = [ + migrations.AlterField( + model_name='smartlink', + name='dynamic_label', + 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/). The {{ document }} context variable is available.", max_length=96, verbose_name='Dynamic label', blank=True), + preserve_default=True, + ), + migrations.AlterField( + model_name='smartlinkcondition', + name='expression', + field=models.TextField(help_text="Enter a template to render. Use Django's default templating language (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ document }} context variable is available.", verbose_name='Expression'), + preserve_default=True, + ), + ] diff --git a/mayan/apps/metadata/migrations/0005_auto_20150729_2344.py b/mayan/apps/metadata/migrations/0005_auto_20150729_2344.py new file mode 100644 index 0000000000..30446472f8 --- /dev/null +++ b/mayan/apps/metadata/migrations/0005_auto_20150729_2344.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('metadata', '0004_auto_20150708_0324'), + ] + + operations = [ + migrations.AlterField( + model_name='metadatatype', + name='default', + 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, null=True, verbose_name='Default', blank=True), + preserve_default=True, + ), + migrations.AlterField( + model_name='metadatatype', + name='lookup', + field=models.TextField(help_text="Enter a template to render. Must result in a comma delimited string. Use Django's default templating language (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/).", null=True, verbose_name='Lookup', blank=True), + preserve_default=True, + ), + migrations.AlterField( + model_name='metadatatype', + name='name', + field=models.CharField(help_text='Name used by other apps to reference this value. Do not use python reserved words, or spaces.', unique=True, max_length=48, verbose_name='Name'), + preserve_default=True, + ), + ]