Add migrations for the help text changes

Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
This commit is contained in:
Roberto Rosario
2019-12-10 22:34:13 -04:00
parent 9d5c4c017d
commit 888715c3cf
2 changed files with 45 additions and 0 deletions

View File

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

View File

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