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

fix diff_mode migration error

This commit is contained in:
Chris Meyers 2017-07-13 07:54:58 -04:00
parent 506209baae
commit 352e83aa84

View File

@ -341,12 +341,12 @@ class Migration(migrations.Migration):
name='ask_diff_mode_on_launch', name='ask_diff_mode_on_launch',
field=models.BooleanField(default=False), field=models.BooleanField(default=False),
), ),
migrations.AlterField( migrations.AddField(
model_name='job', model_name='job',
name='diff_mode', 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'), 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( migrations.AddField(
model_name='jobtemplate', model_name='jobtemplate',
name='diff_mode', 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'), 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'),