mirror of
https://github.com/ansible/awx.git
synced 2026-01-17 20:51:21 -03:30
add migration for is bulk job
This commit is contained in:
parent
5c47c24e28
commit
81ba6c0234
18
awx/main/migrations/0175_workflowjob_is_bulk_job.py
Normal file
18
awx/main/migrations/0175_workflowjob_is_bulk_job.py
Normal file
@ -0,0 +1,18 @@
|
||||
# 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),
|
||||
),
|
||||
]
|
||||
Loading…
x
Reference in New Issue
Block a user