19 lines
536 B
Python
19 lines
536 B
Python
# Generated by Django 2.2.8 on 2020-02-06 16:43
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0107_v370_workflow_convergence_api_toggle'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='unifiedjob',
|
|
name='dependencies_processed',
|
|
field=models.BooleanField(default=False, editable=False, help_text='If True, the task manager has already processed potential dependencies for this job.'),
|
|
),
|
|
]
|