mirror of
https://github.com/ansible/awx.git
synced 2026-02-15 18:20:00 -03:30
28 lines
818 B
Python
28 lines
818 B
Python
# Generated by Django 2.2.16 on 2021-01-27 22:31
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('main', '0125_more_ee_modeling_changes'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='executionenvironment',
|
|
name='pull',
|
|
field=models.CharField(
|
|
choices=[
|
|
('always', 'Always pull container before running.'),
|
|
('missing', 'Only pull the image if not present before running.'),
|
|
('never', 'Never pull container before running.'),
|
|
],
|
|
blank=True,
|
|
default='',
|
|
help_text='Pull image before running?',
|
|
max_length=16,
|
|
),
|
|
),
|
|
]
|