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.', ), ), ]