mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-19 23:33:37 -05:00
Enabled the params bulk job make black make black again Fixed inventory and organization input params for bulk modules add collection integration tests Fix cli return errors fix test completeness
18 lines
401 B
Python
18 lines
401 B
Python
# Generated by Django 3.2.16 on 2023-01-05 15:39
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('main', '0174_ensure_org_ee_admin_roles'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='workflowjob',
|
|
name='is_bulk_job',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|