mirror of
https://github.com/ansible/awx.git
synced 2026-04-06 18:49:21 -02:30
edit new migration for deprecation of host_filter
This commit is contained in:
@@ -6,7 +6,7 @@ from django.db import migrations, models
|
|||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('main', '0174_ensure_org_ee_admin_roles'),
|
('main', '0181_hostmetricsummarymonthly'),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
@@ -89,4 +89,22 @@ class Migration(migrations.Migration):
|
|||||||
name='limit',
|
name='limit',
|
||||||
field=models.TextField(blank=True, default='', help_text='Enter host, group or pattern match'),
|
field=models.TextField(blank=True, default='', help_text='Enter host, group or pattern match'),
|
||||||
),
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='inventorysource',
|
||||||
|
name='host_filter',
|
||||||
|
field=models.TextField(
|
||||||
|
blank=True,
|
||||||
|
default='',
|
||||||
|
help_text='This field is deprecated and will be removed in a future release. Regex where only matching hosts will be imported.',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='inventoryupdate',
|
||||||
|
name='host_filter',
|
||||||
|
field=models.TextField(
|
||||||
|
blank=True,
|
||||||
|
default='',
|
||||||
|
help_text='This field is deprecated and will be removed in a future release. Regex where only matching hosts will be imported.',
|
||||||
|
),
|
||||||
|
),
|
||||||
]
|
]
|
||||||
Reference in New Issue
Block a user