mirror of
https://github.com/ansible/awx.git
synced 2026-08-03 11:30:00 -02:30
20 lines
551 B
Python
20 lines
551 B
Python
# Generated by Django 2.2.16 on 2021-03-16 20:49
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('main', '0133_centrify_vault_credtype'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='unifiedjob',
|
|
name='ansible_version',
|
|
field=models.CharField(
|
|
blank=True, default='', editable=False, help_text='The version of Ansible Core installed in the execution environment.', max_length=255
|
|
),
|
|
),
|
|
]
|