Add migrations for the help text changes
Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
This commit is contained in:
25
mayan/apps/linking/migrations/0009_auto_20191211_0233.py
Normal file
25
mayan/apps/linking/migrations/0009_auto_20191211_0233.py
Normal 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'),
|
||||
),
|
||||
]
|
||||
20
mayan/apps/web_links/migrations/0003_auto_20191211_0233.py
Normal file
20
mayan/apps/web_links/migrations/0003_auto_20191211_0233.py
Normal 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'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user