mirror of
https://github.com/ansible/awx.git
synced 2026-02-26 07:26:03 -03:30
Replace {} as field default values with the callable dict
This commit is contained in:
@@ -44,7 +44,7 @@ class Migration(migrations.Migration):
|
|||||||
('modified', models.DateTimeField(default=None, editable=False)),
|
('modified', models.DateTimeField(default=None, editable=False)),
|
||||||
('host_name', models.CharField(default='', max_length=1024, editable=False)),
|
('host_name', models.CharField(default='', max_length=1024, editable=False)),
|
||||||
('event', models.CharField(max_length=100, choices=[('runner_on_failed', 'Host Failed'), ('runner_on_ok', 'Host OK'), ('runner_on_unreachable', 'Host Unreachable'), ('runner_on_skipped', 'Host Skipped')])),
|
('event', models.CharField(max_length=100, choices=[('runner_on_failed', 'Host Failed'), ('runner_on_ok', 'Host OK'), ('runner_on_unreachable', 'Host Unreachable'), ('runner_on_skipped', 'Host Skipped')])),
|
||||||
('event_data', jsonfield.fields.JSONField(default={}, blank=True)),
|
('event_data', jsonfield.fields.JSONField(default=dict, blank=True)),
|
||||||
('failed', models.BooleanField(default=False, editable=False)),
|
('failed', models.BooleanField(default=False, editable=False)),
|
||||||
('changed', models.BooleanField(default=False, editable=False)),
|
('changed', models.BooleanField(default=False, editable=False)),
|
||||||
('counter', models.PositiveIntegerField(default=0)),
|
('counter', models.PositiveIntegerField(default=0)),
|
||||||
@@ -198,7 +198,7 @@ class Migration(migrations.Migration):
|
|||||||
('created', models.DateTimeField(default=None, editable=False)),
|
('created', models.DateTimeField(default=None, editable=False)),
|
||||||
('modified', models.DateTimeField(default=None, editable=False)),
|
('modified', models.DateTimeField(default=None, editable=False)),
|
||||||
('event', models.CharField(max_length=100, choices=[('runner_on_failed', 'Host Failed'), ('runner_on_ok', 'Host OK'), ('runner_on_error', 'Host Failure'), ('runner_on_skipped', 'Host Skipped'), ('runner_on_unreachable', 'Host Unreachable'), ('runner_on_no_hosts', 'No Hosts Remaining'), ('runner_on_async_poll', 'Host Polling'), ('runner_on_async_ok', 'Host Async OK'), ('runner_on_async_failed', 'Host Async Failure'), ('runner_on_file_diff', 'File Difference'), ('playbook_on_start', 'Playbook Started'), ('playbook_on_notify', 'Running Handlers'), ('playbook_on_no_hosts_matched', 'No Hosts Matched'), ('playbook_on_no_hosts_remaining', 'No Hosts Remaining'), ('playbook_on_task_start', 'Task Started'), ('playbook_on_vars_prompt', 'Variables Prompted'), ('playbook_on_setup', 'Gathering Facts'), ('playbook_on_import_for_host', 'internal: on Import for Host'), ('playbook_on_not_import_for_host', 'internal: on Not Import for Host'), ('playbook_on_play_start', 'Play Started'), ('playbook_on_stats', 'Playbook Complete')])),
|
('event', models.CharField(max_length=100, choices=[('runner_on_failed', 'Host Failed'), ('runner_on_ok', 'Host OK'), ('runner_on_error', 'Host Failure'), ('runner_on_skipped', 'Host Skipped'), ('runner_on_unreachable', 'Host Unreachable'), ('runner_on_no_hosts', 'No Hosts Remaining'), ('runner_on_async_poll', 'Host Polling'), ('runner_on_async_ok', 'Host Async OK'), ('runner_on_async_failed', 'Host Async Failure'), ('runner_on_file_diff', 'File Difference'), ('playbook_on_start', 'Playbook Started'), ('playbook_on_notify', 'Running Handlers'), ('playbook_on_no_hosts_matched', 'No Hosts Matched'), ('playbook_on_no_hosts_remaining', 'No Hosts Remaining'), ('playbook_on_task_start', 'Task Started'), ('playbook_on_vars_prompt', 'Variables Prompted'), ('playbook_on_setup', 'Gathering Facts'), ('playbook_on_import_for_host', 'internal: on Import for Host'), ('playbook_on_not_import_for_host', 'internal: on Not Import for Host'), ('playbook_on_play_start', 'Play Started'), ('playbook_on_stats', 'Playbook Complete')])),
|
||||||
('event_data', jsonfield.fields.JSONField(default={}, blank=True)),
|
('event_data', jsonfield.fields.JSONField(default=dict, blank=True)),
|
||||||
('failed', models.BooleanField(default=False, editable=False)),
|
('failed', models.BooleanField(default=False, editable=False)),
|
||||||
('changed', models.BooleanField(default=False, editable=False)),
|
('changed', models.BooleanField(default=False, editable=False)),
|
||||||
('host_name', models.CharField(default='', max_length=1024, editable=False)),
|
('host_name', models.CharField(default='', max_length=1024, editable=False)),
|
||||||
@@ -304,7 +304,7 @@ class Migration(migrations.Migration):
|
|||||||
('dtend', models.DateTimeField(default=None, null=True, editable=False)),
|
('dtend', models.DateTimeField(default=None, null=True, editable=False)),
|
||||||
('rrule', models.CharField(max_length=255)),
|
('rrule', models.CharField(max_length=255)),
|
||||||
('next_run', models.DateTimeField(default=None, null=True, editable=False)),
|
('next_run', models.DateTimeField(default=None, null=True, editable=False)),
|
||||||
('extra_data', jsonfield.fields.JSONField(default={}, blank=True)),
|
('extra_data', jsonfield.fields.JSONField(default=dict, blank=True)),
|
||||||
('created_by', models.ForeignKey(related_name="{u'class': 'schedule', u'app_label': 'main'}(class)s_created+", on_delete=django.db.models.deletion.SET_NULL, default=None, editable=False, to=settings.AUTH_USER_MODEL, null=True)),
|
('created_by', models.ForeignKey(related_name="{u'class': 'schedule', u'app_label': 'main'}(class)s_created+", on_delete=django.db.models.deletion.SET_NULL, default=None, editable=False, to=settings.AUTH_USER_MODEL, null=True)),
|
||||||
('modified_by', models.ForeignKey(related_name="{u'class': 'schedule', u'app_label': 'main'}(class)s_modified+", on_delete=django.db.models.deletion.SET_NULL, default=None, editable=False, to=settings.AUTH_USER_MODEL, null=True)),
|
('modified_by', models.ForeignKey(related_name="{u'class': 'schedule', u'app_label': 'main'}(class)s_modified+", on_delete=django.db.models.deletion.SET_NULL, default=None, editable=False, to=settings.AUTH_USER_MODEL, null=True)),
|
||||||
('tags', taggit.managers.TaggableManager(to='taggit.Tag', through='taggit.TaggedItem', blank=True, help_text='A comma-separated list of tags.', verbose_name='Tags')),
|
('tags', taggit.managers.TaggableManager(to='taggit.Tag', through='taggit.TaggedItem', blank=True, help_text='A comma-separated list of tags.', verbose_name='Tags')),
|
||||||
@@ -351,7 +351,7 @@ class Migration(migrations.Migration):
|
|||||||
('elapsed', models.DecimalField(editable=False, max_digits=12, decimal_places=3)),
|
('elapsed', models.DecimalField(editable=False, max_digits=12, decimal_places=3)),
|
||||||
('job_args', models.TextField(default='', editable=False, blank=True)),
|
('job_args', models.TextField(default='', editable=False, blank=True)),
|
||||||
('job_cwd', models.CharField(default='', max_length=1024, editable=False, blank=True)),
|
('job_cwd', models.CharField(default='', max_length=1024, editable=False, blank=True)),
|
||||||
('job_env', jsonfield.fields.JSONField(default={}, editable=False, blank=True)),
|
('job_env', jsonfield.fields.JSONField(default=dict, editable=False, blank=True)),
|
||||||
('job_explanation', models.TextField(default='', editable=False, blank=True)),
|
('job_explanation', models.TextField(default='', editable=False, blank=True)),
|
||||||
('start_args', models.TextField(default='', editable=False, blank=True)),
|
('start_args', models.TextField(default='', editable=False, blank=True)),
|
||||||
('result_stdout_text', models.TextField(default='', editable=False, blank=True)),
|
('result_stdout_text', models.TextField(default='', editable=False, blank=True)),
|
||||||
@@ -463,7 +463,7 @@ class Migration(migrations.Migration):
|
|||||||
('host_config_key', models.CharField(default='', max_length=1024, blank=True)),
|
('host_config_key', models.CharField(default='', max_length=1024, blank=True)),
|
||||||
('ask_variables_on_launch', models.BooleanField(default=False)),
|
('ask_variables_on_launch', models.BooleanField(default=False)),
|
||||||
('survey_enabled', models.BooleanField(default=False)),
|
('survey_enabled', models.BooleanField(default=False)),
|
||||||
('survey_spec', jsonfield.fields.JSONField(default={}, blank=True)),
|
('survey_spec', jsonfield.fields.JSONField(default=dict, blank=True)),
|
||||||
],
|
],
|
||||||
options={
|
options={
|
||||||
'ordering': ('name',),
|
'ordering': ('name',),
|
||||||
|
|||||||
@@ -238,7 +238,7 @@ class Migration(migrations.Migration):
|
|||||||
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
||||||
('timestamp', models.DateTimeField(default=None, help_text='Date and time of the corresponding fact scan gathering time.', editable=False)),
|
('timestamp', models.DateTimeField(default=None, help_text='Date and time of the corresponding fact scan gathering time.', editable=False)),
|
||||||
('module', models.CharField(max_length=128)),
|
('module', models.CharField(max_length=128)),
|
||||||
('facts', awx.main.fields.JSONBField(default={}, help_text='Arbitrary JSON structure of module facts captured at timestamp for a single host.', blank=True)),
|
('facts', awx.main.fields.JSONBField(default=dict, help_text='Arbitrary JSON structure of module facts captured at timestamp for a single host.', blank=True)),
|
||||||
('host', models.ForeignKey(related_name='facts', to='main.Host', help_text='Host for the facts that the fact scan captured.')),
|
('host', models.ForeignKey(related_name='facts', to='main.Host', help_text='Host for the facts that the fact scan captured.')),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -161,7 +161,7 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjobnode',
|
model_name='workflowjobnode',
|
||||||
name='char_prompts',
|
name='char_prompts',
|
||||||
field=jsonfield.fields.JSONField(default={}, blank=True),
|
field=jsonfield.fields.JSONField(default=dict, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjobnode',
|
model_name='workflowjobnode',
|
||||||
@@ -191,7 +191,7 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjobtemplatenode',
|
model_name='workflowjobtemplatenode',
|
||||||
name='char_prompts',
|
name='char_prompts',
|
||||||
field=jsonfield.fields.JSONField(default={}, blank=True),
|
field=jsonfield.fields.JSONField(default=dict, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjobtemplatenode',
|
model_name='workflowjobtemplatenode',
|
||||||
@@ -227,12 +227,12 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='job',
|
model_name='job',
|
||||||
name='artifacts',
|
name='artifacts',
|
||||||
field=jsonfield.fields.JSONField(default={}, editable=False, blank=True),
|
field=jsonfield.fields.JSONField(default=dict, editable=False, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjobnode',
|
model_name='workflowjobnode',
|
||||||
name='ancestor_artifacts',
|
name='ancestor_artifacts',
|
||||||
field=jsonfield.fields.JSONField(default={}, editable=False, blank=True),
|
field=jsonfield.fields.JSONField(default=dict, editable=False, blank=True),
|
||||||
),
|
),
|
||||||
# Job timeout settings
|
# Job timeout settings
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
@@ -397,7 +397,7 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjob',
|
model_name='workflowjob',
|
||||||
name='survey_passwords',
|
name='survey_passwords',
|
||||||
field=jsonfield.fields.JSONField(default={}, editable=False, blank=True),
|
field=jsonfield.fields.JSONField(default=dict, editable=False, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjobtemplate',
|
model_name='workflowjobtemplate',
|
||||||
@@ -407,33 +407,33 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjobtemplate',
|
model_name='workflowjobtemplate',
|
||||||
name='survey_spec',
|
name='survey_spec',
|
||||||
field=jsonfield.fields.JSONField(default={}, blank=True),
|
field=jsonfield.fields.JSONField(default=dict, blank=True),
|
||||||
),
|
),
|
||||||
# JSON field changes
|
# JSON field changes
|
||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='adhoccommandevent',
|
model_name='adhoccommandevent',
|
||||||
name='event_data',
|
name='event_data',
|
||||||
field=awx.main.fields.JSONField(default={}, blank=True),
|
field=awx.main.fields.JSONField(default=dict, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='job',
|
model_name='job',
|
||||||
name='artifacts',
|
name='artifacts',
|
||||||
field=awx.main.fields.JSONField(default={}, editable=False, blank=True),
|
field=awx.main.fields.JSONField(default=dict, editable=False, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='job',
|
model_name='job',
|
||||||
name='survey_passwords',
|
name='survey_passwords',
|
||||||
field=awx.main.fields.JSONField(default={}, editable=False, blank=True),
|
field=awx.main.fields.JSONField(default=dict, editable=False, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='jobevent',
|
model_name='jobevent',
|
||||||
name='event_data',
|
name='event_data',
|
||||||
field=awx.main.fields.JSONField(default={}, blank=True),
|
field=awx.main.fields.JSONField(default=dict, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='jobtemplate',
|
model_name='jobtemplate',
|
||||||
name='survey_spec',
|
name='survey_spec',
|
||||||
field=awx.main.fields.JSONField(default={}, blank=True),
|
field=awx.main.fields.JSONField(default=dict, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='notification',
|
model_name='notification',
|
||||||
@@ -453,37 +453,37 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='schedule',
|
model_name='schedule',
|
||||||
name='extra_data',
|
name='extra_data',
|
||||||
field=awx.main.fields.JSONField(default={}, blank=True),
|
field=awx.main.fields.JSONField(default=dict, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='unifiedjob',
|
model_name='unifiedjob',
|
||||||
name='job_env',
|
name='job_env',
|
||||||
field=awx.main.fields.JSONField(default={}, editable=False, blank=True),
|
field=awx.main.fields.JSONField(default=dict, editable=False, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='workflowjob',
|
model_name='workflowjob',
|
||||||
name='survey_passwords',
|
name='survey_passwords',
|
||||||
field=awx.main.fields.JSONField(default={}, editable=False, blank=True),
|
field=awx.main.fields.JSONField(default=dict, editable=False, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='workflowjobnode',
|
model_name='workflowjobnode',
|
||||||
name='ancestor_artifacts',
|
name='ancestor_artifacts',
|
||||||
field=awx.main.fields.JSONField(default={}, editable=False, blank=True),
|
field=awx.main.fields.JSONField(default=dict, editable=False, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='workflowjobnode',
|
model_name='workflowjobnode',
|
||||||
name='char_prompts',
|
name='char_prompts',
|
||||||
field=awx.main.fields.JSONField(default={}, blank=True),
|
field=awx.main.fields.JSONField(default=dict, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='workflowjobtemplate',
|
model_name='workflowjobtemplate',
|
||||||
name='survey_spec',
|
name='survey_spec',
|
||||||
field=awx.main.fields.JSONField(default={}, blank=True),
|
field=awx.main.fields.JSONField(default=dict, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='workflowjobtemplatenode',
|
model_name='workflowjobtemplatenode',
|
||||||
name='char_prompts',
|
name='char_prompts',
|
||||||
field=awx.main.fields.JSONField(default={}, blank=True),
|
field=awx.main.fields.JSONField(default=dict, blank=True),
|
||||||
),
|
),
|
||||||
# Job Project Update
|
# Job Project Update
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
|
|||||||
@@ -112,12 +112,12 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='fact',
|
model_name='fact',
|
||||||
name='facts',
|
name='facts',
|
||||||
field=awx.main.fields.JSONBField(default={}, help_text='Arbitrary JSON structure of module facts captured at timestamp for a single host.', blank=True),
|
field=awx.main.fields.JSONBField(default=dict, help_text='Arbitrary JSON structure of module facts captured at timestamp for a single host.', blank=True),
|
||||||
),
|
),
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='host',
|
model_name='host',
|
||||||
name='ansible_facts',
|
name='ansible_facts',
|
||||||
field=awx.main.fields.JSONBField(default={}, help_text='Arbitrary JSON structure of most recent ansible_facts, per-host.', blank=True),
|
field=awx.main.fields.JSONBField(default=dict, help_text='Arbitrary JSON structure of most recent ansible_facts, per-host.', blank=True),
|
||||||
),
|
),
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='host',
|
model_name='host',
|
||||||
@@ -382,8 +382,8 @@ class Migration(migrations.Migration):
|
|||||||
('name', models.CharField(max_length=512)),
|
('name', models.CharField(max_length=512)),
|
||||||
('kind', models.CharField(max_length=32, choices=[('ssh', 'Machine'), ('vault', 'Vault'), ('net', 'Network'), ('scm', 'Source Control'), ('cloud', 'Cloud'), ('insights', 'Insights')])),
|
('kind', models.CharField(max_length=32, choices=[('ssh', 'Machine'), ('vault', 'Vault'), ('net', 'Network'), ('scm', 'Source Control'), ('cloud', 'Cloud'), ('insights', 'Insights')])),
|
||||||
('managed_by_tower', models.BooleanField(default=False, editable=False)),
|
('managed_by_tower', models.BooleanField(default=False, editable=False)),
|
||||||
('inputs', awx.main.fields.CredentialTypeInputField(default={}, blank=True, help_text='Enter inputs using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax.')),
|
('inputs', awx.main.fields.CredentialTypeInputField(default=dict, blank=True, help_text='Enter inputs using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax.')),
|
||||||
('injectors', awx.main.fields.CredentialTypeInjectorField(default={}, blank=True, help_text='Enter injectors using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax.')),
|
('injectors', awx.main.fields.CredentialTypeInjectorField(default=dict, blank=True, help_text='Enter injectors using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax.')),
|
||||||
('created_by', models.ForeignKey(related_name="{u'class': 'credentialtype', u'app_label': 'main'}(class)s_created+", on_delete=models.deletion.SET_NULL, default=None, editable=False, to=settings.AUTH_USER_MODEL, null=True)),
|
('created_by', models.ForeignKey(related_name="{u'class': 'credentialtype', u'app_label': 'main'}(class)s_created+", on_delete=models.deletion.SET_NULL, default=None, editable=False, to=settings.AUTH_USER_MODEL, null=True)),
|
||||||
('modified_by', models.ForeignKey(related_name="{u'class': 'credentialtype', u'app_label': 'main'}(class)s_modified+", on_delete=models.deletion.SET_NULL, default=None, editable=False, to=settings.AUTH_USER_MODEL, null=True)),
|
('modified_by', models.ForeignKey(related_name="{u'class': 'credentialtype', u'app_label': 'main'}(class)s_modified+", on_delete=models.deletion.SET_NULL, default=None, editable=False, to=settings.AUTH_USER_MODEL, null=True)),
|
||||||
('tags', taggit.managers.TaggableManager(to='taggit.Tag', through='taggit.TaggedItem', blank=True, help_text='A comma-separated list of tags.', verbose_name='Tags')),
|
('tags', taggit.managers.TaggableManager(to='taggit.Tag', through='taggit.TaggedItem', blank=True, help_text='A comma-separated list of tags.', verbose_name='Tags')),
|
||||||
@@ -399,7 +399,7 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='credential',
|
model_name='credential',
|
||||||
name='inputs',
|
name='inputs',
|
||||||
field=awx.main.fields.CredentialInputField(default={}, blank=True),
|
field=awx.main.fields.CredentialInputField(default=dict, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='credential',
|
model_name='credential',
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='credential',
|
model_name='credential',
|
||||||
name='inputs',
|
name='inputs',
|
||||||
field=awx.main.fields.CredentialInputField(default={}, help_text='Enter inputs using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax.', blank=True),
|
field=awx.main.fields.CredentialInputField(default=dict, help_text='Enter inputs using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax.', blank=True),
|
||||||
),
|
),
|
||||||
migrations.RemoveField(
|
migrations.RemoveField(
|
||||||
model_name='job',
|
model_name='job',
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='schedule',
|
model_name='schedule',
|
||||||
name='char_prompts',
|
name='char_prompts',
|
||||||
field=awx.main.fields.JSONField(default={}, blank=True),
|
field=awx.main.fields.JSONField(default=dict, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='schedule',
|
model_name='schedule',
|
||||||
@@ -35,7 +35,7 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='schedule',
|
model_name='schedule',
|
||||||
name='survey_passwords',
|
name='survey_passwords',
|
||||||
field=awx.main.fields.JSONField(default={}, editable=False, blank=True),
|
field=awx.main.fields.JSONField(default=dict, editable=False, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjobnode',
|
model_name='workflowjobnode',
|
||||||
@@ -45,12 +45,12 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjobnode',
|
model_name='workflowjobnode',
|
||||||
name='extra_data',
|
name='extra_data',
|
||||||
field=awx.main.fields.JSONField(default={}, blank=True),
|
field=awx.main.fields.JSONField(default=dict, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjobnode',
|
model_name='workflowjobnode',
|
||||||
name='survey_passwords',
|
name='survey_passwords',
|
||||||
field=awx.main.fields.JSONField(default={}, editable=False, blank=True),
|
field=awx.main.fields.JSONField(default=dict, editable=False, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjobtemplatenode',
|
model_name='workflowjobtemplatenode',
|
||||||
@@ -60,12 +60,12 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjobtemplatenode',
|
model_name='workflowjobtemplatenode',
|
||||||
name='extra_data',
|
name='extra_data',
|
||||||
field=awx.main.fields.JSONField(default={}, blank=True),
|
field=awx.main.fields.JSONField(default=dict, blank=True),
|
||||||
),
|
),
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjobtemplatenode',
|
model_name='workflowjobtemplatenode',
|
||||||
name='survey_passwords',
|
name='survey_passwords',
|
||||||
field=awx.main.fields.JSONField(default={}, editable=False, blank=True),
|
field=awx.main.fields.JSONField(default=dict, editable=False, blank=True),
|
||||||
),
|
),
|
||||||
# Run data migration before removing the old credential field
|
# Run data migration before removing the old credential field
|
||||||
migrations.RunPython(migration_utils.set_current_apps_for_migrations, migrations.RunPython.noop),
|
migrations.RunPython(migration_utils.set_current_apps_for_migrations, migrations.RunPython.noop),
|
||||||
@@ -83,9 +83,9 @@ class Migration(migrations.Migration):
|
|||||||
name='JobLaunchConfig',
|
name='JobLaunchConfig',
|
||||||
fields=[
|
fields=[
|
||||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||||
('extra_data', awx.main.fields.JSONField(blank=True, default={})),
|
('extra_data', awx.main.fields.JSONField(blank=True, default=dict)),
|
||||||
('survey_passwords', awx.main.fields.JSONField(blank=True, default={}, editable=False)),
|
('survey_passwords', awx.main.fields.JSONField(blank=True, default=dict, editable=False)),
|
||||||
('char_prompts', awx.main.fields.JSONField(blank=True, default={})),
|
('char_prompts', awx.main.fields.JSONField(blank=True, default=dict)),
|
||||||
('credentials', models.ManyToManyField(related_name='joblaunchconfigs', to='main.Credential')),
|
('credentials', models.ManyToManyField(related_name='joblaunchconfigs', to='main.Credential')),
|
||||||
('inventory', models.ForeignKey(blank=True, default=None, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='joblaunchconfigs', to='main.Inventory')),
|
('inventory', models.ForeignKey(blank=True, default=None, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='joblaunchconfigs', to='main.Inventory')),
|
||||||
('job', models.OneToOneField(editable=False, on_delete=django.db.models.deletion.CASCADE, related_name='launch_config', to='main.UnifiedJob')),
|
('job', models.OneToOneField(editable=False, on_delete=django.db.models.deletion.CASCADE, related_name='launch_config', to='main.UnifiedJob')),
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ class Migration(migrations.Migration):
|
|||||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||||
('created', models.DateTimeField(default=None, editable=False)),
|
('created', models.DateTimeField(default=None, editable=False)),
|
||||||
('modified', models.DateTimeField(default=None, editable=False)),
|
('modified', models.DateTimeField(default=None, editable=False)),
|
||||||
('event_data', awx.main.fields.JSONField(blank=True, default={})),
|
('event_data', awx.main.fields.JSONField(blank=True, default=dict)),
|
||||||
('uuid', models.CharField(default='', editable=False, max_length=1024)),
|
('uuid', models.CharField(default='', editable=False, max_length=1024)),
|
||||||
('counter', models.PositiveIntegerField(default=0, editable=False)),
|
('counter', models.PositiveIntegerField(default=0, editable=False)),
|
||||||
('stdout', models.TextField(default='', editable=False)),
|
('stdout', models.TextField(default='', editable=False)),
|
||||||
@@ -40,7 +40,7 @@ class Migration(migrations.Migration):
|
|||||||
('created', models.DateTimeField(default=None, editable=False)),
|
('created', models.DateTimeField(default=None, editable=False)),
|
||||||
('modified', models.DateTimeField(default=None, editable=False)),
|
('modified', models.DateTimeField(default=None, editable=False)),
|
||||||
('event', models.CharField(choices=[('runner_on_failed', 'Host Failed'), ('runner_on_ok', 'Host OK'), ('runner_on_error', 'Host Failure'), ('runner_on_skipped', 'Host Skipped'), ('runner_on_unreachable', 'Host Unreachable'), ('runner_on_no_hosts', 'No Hosts Remaining'), ('runner_on_async_poll', 'Host Polling'), ('runner_on_async_ok', 'Host Async OK'), ('runner_on_async_failed', 'Host Async Failure'), ('runner_item_on_ok', 'Item OK'), ('runner_item_on_failed', 'Item Failed'), ('runner_item_on_skipped', 'Item Skipped'), ('runner_retry', 'Host Retry'), ('runner_on_file_diff', 'File Difference'), ('playbook_on_start', 'Playbook Started'), ('playbook_on_notify', 'Running Handlers'), ('playbook_on_include', 'Including File'), ('playbook_on_no_hosts_matched', 'No Hosts Matched'), ('playbook_on_no_hosts_remaining', 'No Hosts Remaining'), ('playbook_on_task_start', 'Task Started'), ('playbook_on_vars_prompt', 'Variables Prompted'), ('playbook_on_setup', 'Gathering Facts'), ('playbook_on_import_for_host', 'internal: on Import for Host'), ('playbook_on_not_import_for_host', 'internal: on Not Import for Host'), ('playbook_on_play_start', 'Play Started'), ('playbook_on_stats', 'Playbook Complete'), ('debug', 'Debug'), ('verbose', 'Verbose'), ('deprecated', 'Deprecated'), ('warning', 'Warning'), ('system_warning', 'System Warning'), ('error', 'Error')], max_length=100)),
|
('event', models.CharField(choices=[('runner_on_failed', 'Host Failed'), ('runner_on_ok', 'Host OK'), ('runner_on_error', 'Host Failure'), ('runner_on_skipped', 'Host Skipped'), ('runner_on_unreachable', 'Host Unreachable'), ('runner_on_no_hosts', 'No Hosts Remaining'), ('runner_on_async_poll', 'Host Polling'), ('runner_on_async_ok', 'Host Async OK'), ('runner_on_async_failed', 'Host Async Failure'), ('runner_item_on_ok', 'Item OK'), ('runner_item_on_failed', 'Item Failed'), ('runner_item_on_skipped', 'Item Skipped'), ('runner_retry', 'Host Retry'), ('runner_on_file_diff', 'File Difference'), ('playbook_on_start', 'Playbook Started'), ('playbook_on_notify', 'Running Handlers'), ('playbook_on_include', 'Including File'), ('playbook_on_no_hosts_matched', 'No Hosts Matched'), ('playbook_on_no_hosts_remaining', 'No Hosts Remaining'), ('playbook_on_task_start', 'Task Started'), ('playbook_on_vars_prompt', 'Variables Prompted'), ('playbook_on_setup', 'Gathering Facts'), ('playbook_on_import_for_host', 'internal: on Import for Host'), ('playbook_on_not_import_for_host', 'internal: on Not Import for Host'), ('playbook_on_play_start', 'Play Started'), ('playbook_on_stats', 'Playbook Complete'), ('debug', 'Debug'), ('verbose', 'Verbose'), ('deprecated', 'Deprecated'), ('warning', 'Warning'), ('system_warning', 'System Warning'), ('error', 'Error')], max_length=100)),
|
||||||
('event_data', awx.main.fields.JSONField(blank=True, default={})),
|
('event_data', awx.main.fields.JSONField(blank=True, default=dict)),
|
||||||
('failed', models.BooleanField(default=False, editable=False)),
|
('failed', models.BooleanField(default=False, editable=False)),
|
||||||
('changed', models.BooleanField(default=False, editable=False)),
|
('changed', models.BooleanField(default=False, editable=False)),
|
||||||
('uuid', models.CharField(default='', editable=False, max_length=1024)),
|
('uuid', models.CharField(default='', editable=False, max_length=1024)),
|
||||||
@@ -65,7 +65,7 @@ class Migration(migrations.Migration):
|
|||||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||||
('created', models.DateTimeField(default=None, editable=False)),
|
('created', models.DateTimeField(default=None, editable=False)),
|
||||||
('modified', models.DateTimeField(default=None, editable=False)),
|
('modified', models.DateTimeField(default=None, editable=False)),
|
||||||
('event_data', awx.main.fields.JSONField(blank=True, default={})),
|
('event_data', awx.main.fields.JSONField(blank=True, default=dict)),
|
||||||
('uuid', models.CharField(default='', editable=False, max_length=1024)),
|
('uuid', models.CharField(default='', editable=False, max_length=1024)),
|
||||||
('counter', models.PositiveIntegerField(default=0, editable=False)),
|
('counter', models.PositiveIntegerField(default=0, editable=False)),
|
||||||
('stdout', models.TextField(default='', editable=False)),
|
('stdout', models.TextField(default='', editable=False)),
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjob',
|
model_name='workflowjob',
|
||||||
name='char_prompts',
|
name='char_prompts',
|
||||||
field=awx.main.fields.JSONField(blank=True, default={}),
|
field=awx.main.fields.JSONField(blank=True, default=dict),
|
||||||
),
|
),
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjob',
|
model_name='workflowjob',
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ class Migration(migrations.Migration):
|
|||||||
('modified', models.DateTimeField(default=None, editable=False)),
|
('modified', models.DateTimeField(default=None, editable=False)),
|
||||||
('description', models.TextField(blank=True, default='')),
|
('description', models.TextField(blank=True, default='')),
|
||||||
('input_field_name', models.CharField(max_length=1024)),
|
('input_field_name', models.CharField(max_length=1024)),
|
||||||
('metadata', awx.main.fields.DynamicCredentialInputField(blank=True, default={})),
|
('metadata', awx.main.fields.DynamicCredentialInputField(blank=True, default=dict)),
|
||||||
('created_by', models.ForeignKey(default=None, editable=False, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name="{'class': 'credentialinputsource', 'model_name': 'credentialinputsource', 'app_label': 'main'}(class)s_created+", to=settings.AUTH_USER_MODEL)),
|
('created_by', models.ForeignKey(default=None, editable=False, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name="{'class': 'credentialinputsource', 'model_name': 'credentialinputsource', 'app_label': 'main'}(class)s_created+", to=settings.AUTH_USER_MODEL)),
|
||||||
('modified_by', models.ForeignKey(default=None, editable=False, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name="{'class': 'credentialinputsource', 'model_name': 'credentialinputsource', 'app_label': 'main'}(class)s_modified+", to=settings.AUTH_USER_MODEL)),
|
('modified_by', models.ForeignKey(default=None, editable=False, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name="{'class': 'credentialinputsource', 'model_name': 'credentialinputsource', 'app_label': 'main'}(class)s_modified+", to=settings.AUTH_USER_MODEL)),
|
||||||
('source_credential', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='target_input_sources', to='main.Credential')),
|
('source_credential', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='target_input_sources', to='main.Credential')),
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ SQUASHED_30 = {
|
|||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='job',
|
model_name='job',
|
||||||
name='survey_passwords',
|
name='survey_passwords',
|
||||||
field=jsonfield.fields.JSONField(default={}, editable=False, blank=True),
|
field=jsonfield.fields.JSONField(default=dict, editable=False, blank=True),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
'0031_v302_migrate_survey_passwords': [
|
'0031_v302_migrate_survey_passwords': [
|
||||||
|
|||||||
@@ -105,7 +105,7 @@ class Credential(PasswordFieldsModel, CommonModelNameNotUnique, ResourceMixin):
|
|||||||
)
|
)
|
||||||
inputs = CredentialInputField(
|
inputs = CredentialInputField(
|
||||||
blank=True,
|
blank=True,
|
||||||
default={},
|
default=dict,
|
||||||
help_text=_('Enter inputs using either JSON or YAML syntax. Use the '
|
help_text=_('Enter inputs using either JSON or YAML syntax. Use the '
|
||||||
'radio button to toggle between the two. Refer to the '
|
'radio button to toggle between the two. Refer to the '
|
||||||
'Ansible Tower documentation for example syntax.')
|
'Ansible Tower documentation for example syntax.')
|
||||||
@@ -343,14 +343,14 @@ class CredentialType(CommonModelNameNotUnique):
|
|||||||
)
|
)
|
||||||
inputs = CredentialTypeInputField(
|
inputs = CredentialTypeInputField(
|
||||||
blank=True,
|
blank=True,
|
||||||
default={},
|
default=dict,
|
||||||
help_text=_('Enter inputs using either JSON or YAML syntax. Use the '
|
help_text=_('Enter inputs using either JSON or YAML syntax. Use the '
|
||||||
'radio button to toggle between the two. Refer to the '
|
'radio button to toggle between the two. Refer to the '
|
||||||
'Ansible Tower documentation for example syntax.')
|
'Ansible Tower documentation for example syntax.')
|
||||||
)
|
)
|
||||||
injectors = CredentialTypeInjectorField(
|
injectors = CredentialTypeInjectorField(
|
||||||
blank=True,
|
blank=True,
|
||||||
default={},
|
default=dict,
|
||||||
help_text=_('Enter injectors using either JSON or YAML syntax. Use the '
|
help_text=_('Enter injectors using either JSON or YAML syntax. Use the '
|
||||||
'radio button to toggle between the two. Refer to the '
|
'radio button to toggle between the two. Refer to the '
|
||||||
'Ansible Tower documentation for example syntax.')
|
'Ansible Tower documentation for example syntax.')
|
||||||
@@ -1117,7 +1117,7 @@ class CredentialInputSource(PrimordialModel):
|
|||||||
)
|
)
|
||||||
metadata = DynamicCredentialInputField(
|
metadata = DynamicCredentialInputField(
|
||||||
blank=True,
|
blank=True,
|
||||||
default={}
|
default=dict
|
||||||
)
|
)
|
||||||
|
|
||||||
def clean_target_credential(self):
|
def clean_target_credential(self):
|
||||||
|
|||||||
@@ -149,7 +149,7 @@ class BasePlaybookEvent(CreatedModifiedModel):
|
|||||||
)
|
)
|
||||||
event_data = JSONField(
|
event_data = JSONField(
|
||||||
blank=True,
|
blank=True,
|
||||||
default={},
|
default=dict,
|
||||||
)
|
)
|
||||||
failed = models.BooleanField(
|
failed = models.BooleanField(
|
||||||
default=False,
|
default=False,
|
||||||
@@ -567,7 +567,7 @@ class BaseCommandEvent(CreatedModifiedModel):
|
|||||||
|
|
||||||
event_data = JSONField(
|
event_data = JSONField(
|
||||||
blank=True,
|
blank=True,
|
||||||
default={},
|
default=dict,
|
||||||
)
|
)
|
||||||
uuid = models.CharField(
|
uuid = models.CharField(
|
||||||
max_length=1024,
|
max_length=1024,
|
||||||
|
|||||||
@@ -650,7 +650,7 @@ class Host(CommonModelNameNotUnique, RelatedJobsMixin):
|
|||||||
)
|
)
|
||||||
ansible_facts = JSONBField(
|
ansible_facts = JSONBField(
|
||||||
blank=True,
|
blank=True,
|
||||||
default={},
|
default=dict,
|
||||||
help_text=_('Arbitrary JSON structure of most recent ansible_facts, per-host.'),
|
help_text=_('Arbitrary JSON structure of most recent ansible_facts, per-host.'),
|
||||||
)
|
)
|
||||||
ansible_facts_modified = models.DateTimeField(
|
ansible_facts_modified = models.DateTimeField(
|
||||||
|
|||||||
@@ -485,7 +485,7 @@ class Job(UnifiedJob, JobOptions, SurveyJobMixin, JobNotificationMixin, TaskMana
|
|||||||
)
|
)
|
||||||
artifacts = JSONField(
|
artifacts = JSONField(
|
||||||
blank=True,
|
blank=True,
|
||||||
default={},
|
default=dict,
|
||||||
editable=False,
|
editable=False,
|
||||||
)
|
)
|
||||||
scm_revision = models.CharField(
|
scm_revision = models.CharField(
|
||||||
@@ -847,7 +847,7 @@ class LaunchTimeConfigBase(BaseModel):
|
|||||||
# This is a solution to the nullable CharField problem, specific to prompting
|
# This is a solution to the nullable CharField problem, specific to prompting
|
||||||
char_prompts = JSONField(
|
char_prompts = JSONField(
|
||||||
blank=True,
|
blank=True,
|
||||||
default={}
|
default=dict
|
||||||
)
|
)
|
||||||
|
|
||||||
def prompts_dict(self, display=False):
|
def prompts_dict(self, display=False):
|
||||||
@@ -927,11 +927,11 @@ class LaunchTimeConfig(LaunchTimeConfigBase):
|
|||||||
# Special case prompting fields, even more special than the other ones
|
# Special case prompting fields, even more special than the other ones
|
||||||
extra_data = JSONField(
|
extra_data = JSONField(
|
||||||
blank=True,
|
blank=True,
|
||||||
default={}
|
default=dict
|
||||||
)
|
)
|
||||||
survey_passwords = prevent_search(JSONField(
|
survey_passwords = prevent_search(JSONField(
|
||||||
blank=True,
|
blank=True,
|
||||||
default={},
|
default=dict,
|
||||||
editable=False,
|
editable=False,
|
||||||
))
|
))
|
||||||
# Credentials needed for non-unified job / unified JT models
|
# Credentials needed for non-unified job / unified JT models
|
||||||
|
|||||||
@@ -100,7 +100,7 @@ class SurveyJobTemplateMixin(models.Model):
|
|||||||
)
|
)
|
||||||
survey_spec = prevent_search(JSONField(
|
survey_spec = prevent_search(JSONField(
|
||||||
blank=True,
|
blank=True,
|
||||||
default={},
|
default=dict,
|
||||||
))
|
))
|
||||||
ask_variables_on_launch = AskForField(
|
ask_variables_on_launch = AskForField(
|
||||||
blank=True,
|
blank=True,
|
||||||
@@ -360,7 +360,7 @@ class SurveyJobMixin(models.Model):
|
|||||||
|
|
||||||
survey_passwords = prevent_search(JSONField(
|
survey_passwords = prevent_search(JSONField(
|
||||||
blank=True,
|
blank=True,
|
||||||
default={},
|
default=dict,
|
||||||
editable=False,
|
editable=False,
|
||||||
))
|
))
|
||||||
|
|
||||||
|
|||||||
@@ -641,7 +641,7 @@ class UnifiedJob(PolymorphicModel, PasswordFieldsModel, CommonModelNameNotUnique
|
|||||||
)
|
)
|
||||||
job_env = prevent_search(JSONField(
|
job_env = prevent_search(JSONField(
|
||||||
blank=True,
|
blank=True,
|
||||||
default={},
|
default=dict,
|
||||||
editable=False,
|
editable=False,
|
||||||
))
|
))
|
||||||
job_explanation = models.TextField(
|
job_explanation = models.TextField(
|
||||||
|
|||||||
@@ -180,7 +180,7 @@ class WorkflowJobNode(WorkflowNodeBase):
|
|||||||
)
|
)
|
||||||
ancestor_artifacts = JSONField(
|
ancestor_artifacts = JSONField(
|
||||||
blank=True,
|
blank=True,
|
||||||
default={},
|
default=dict,
|
||||||
editable=False,
|
editable=False,
|
||||||
)
|
)
|
||||||
do_not_run = models.BooleanField(
|
do_not_run = models.BooleanField(
|
||||||
|
|||||||
Reference in New Issue
Block a user