mirror of
https://github.com/ansible/awx.git
synced 2026-03-15 07:57:29 -02:30
* Foreshadowing of what's to come with the task manager. When deciding on what job to run in our task manager, we can't depend on job template fields. Otherwise, this would cost us a query.
20 lines
417 B
Python
20 lines
417 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0036_v310_remove_tower_settings'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='job',
|
|
name='allow_simultaneous',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|