1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 16:51:11 +03:00

Added Migrations for diff help text

This commit is contained in:
adamscmRH 2017-07-12 12:07:03 -04:00
parent eecc3f54c1
commit ee9efef4d4

View File

@ -351,4 +351,14 @@ class Migration(migrations.Migration):
name='ask_diff_mode_on_launch',
field=models.BooleanField(default=False),
),
migrations.AlterField(
model_name='job',
name='diff_mode',
field=models.BooleanField(default=False, help_text='If enabled, textual changes made to any templated files on the host are shown in the standard output'),
),
migrations.AlterField(
model_name='jobtemplate',
name='diff_mode',
field=models.BooleanField(default=False, help_text='If enabled, textual changes made to any templated files on the host are shown in the standard output'),
),
]