Files
awx/awx/main/migrations/0126_executionenvironment_container_options.py
2023-02-01 14:59:38 -05:00

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,
),
),
]