diff --git a/mayan/apps/linking/migrations/0009_auto_20191211_0233.py b/mayan/apps/linking/migrations/0009_auto_20191211_0233.py new file mode 100644 index 0000000000..cf01b7fe4d --- /dev/null +++ b/mayan/apps/linking/migrations/0009_auto_20191211_0233.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.26 on 2019-12-11 02:33 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('linking', '0008_auto_20190429_1922'), + ] + + operations = [ + migrations.AlterField( + model_name='smartlink', + name='dynamic_label', + field=models.CharField(blank=True, help_text='Use this field to show a unique label depending on the document from which the smart link is being accessed.', max_length=96, verbose_name='Dynamic label'), + ), + migrations.AlterField( + model_name='smartlinkcondition', + name='expression', + field=models.TextField(help_text='The expression using document properties to be evaluated against the foreign document field.', verbose_name='Expression'), + ), + ] diff --git a/mayan/apps/web_links/migrations/0003_auto_20191211_0233.py b/mayan/apps/web_links/migrations/0003_auto_20191211_0233.py new file mode 100644 index 0000000000..4aac032f84 --- /dev/null +++ b/mayan/apps/web_links/migrations/0003_auto_20191211_0233.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.26 on 2019-12-11 02:33 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('web_links', '0002_auto_20191210_0436'), + ] + + operations = [ + migrations.AlterField( + model_name='weblink', + name='template', + field=models.TextField(help_text='Template that will be used to craft the final URL of the web link.', verbose_name='Template'), + ), + ]