diff --git a/awx/main/migrations/0038_v320_release.py b/awx/main/migrations/0038_v320_release.py index 3a4191e913..0de18d6991 100644 --- a/awx/main/migrations/0038_v320_release.py +++ b/awx/main/migrations/0038_v320_release.py @@ -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'), + ), ]