mirror of
https://github.com/ansible/awx.git
synced 2026-01-27 08:31:28 -03:30
35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
# Generated by Django 3.2.13 on 2022-08-10 14:03
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('main', '0164_remove_inventorysource_update_on_project_update'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='unifiedjob',
|
|
name='preferred_instance_groups_cache',
|
|
field=models.JSONField(
|
|
blank=True, default=None, editable=False, help_text='A cached list with pk values from preferred instance groups.', null=True
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name='unifiedjob',
|
|
name='task_impact',
|
|
field=models.PositiveIntegerField(default=0, editable=False, help_text='Number of forks an instance consumes when running this job.'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='workflowapproval',
|
|
name='expires',
|
|
field=models.DateTimeField(
|
|
default=None,
|
|
editable=False,
|
|
help_text='The time this approval will expire. This is the created time plus timeout, used for filtering.',
|
|
null=True,
|
|
),
|
|
),
|
|
]
|