From 7031753a6dbddc4269c6123a3607e6d620c1fb8c Mon Sep 17 00:00:00 2001 From: John Westcott IV Date: Mon, 12 Sep 2022 12:12:03 -0400 Subject: [PATCH] Updating migration file --- awx/main/migrations/0168_prevent_instance_fallback.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/awx/main/migrations/0168_prevent_instance_fallback.py b/awx/main/migrations/0168_prevent_instance_fallback.py index a041582d2c..a38aea2dfe 100644 --- a/awx/main/migrations/0168_prevent_instance_fallback.py +++ b/awx/main/migrations/0168_prevent_instance_fallback.py @@ -1,4 +1,4 @@ -# Generated by Django 3.2.13 on 2022-09-09 17:03 +# Generated by Django 3.2.13 on 2022-09-12 16:11 from django.db import migrations, models @@ -15,7 +15,7 @@ class Migration(migrations.Migration): name='prevent_instance_group_fallback', field=models.BooleanField( default=False, - help_text='If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on.', + help_text='If enabled, the inventory will prevent adding any organization instance groups to the list of preferred instances groups to run associated job templates on.If this setting is enabled and you provided an empty list, the global instance groups will be applied.', ), ), migrations.AddField( @@ -23,7 +23,7 @@ class Migration(migrations.Migration): name='prevent_instance_group_fallback', field=models.BooleanField( default=False, - help_text='If enabled, the job template will prevent adding any inventory or organization instance groups to the list of preferred instances groups to run on.', + help_text='If enabled, the job template will prevent adding any inventory or organization instance groups to the list of preferred instances groups to run on.If this setting is enabled and you provided an empty list, the global instance groups will be applied.', ), ), ]