mirror of
https://github.com/ansible/awx.git
synced 2026-02-14 17:50:02 -03:30
33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
# Generated by Django 3.2.16 on 2023-03-03 20:44
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('main', '0175_workflowjob_is_bulk_job'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='inventorysource',
|
|
name='scm_branch',
|
|
field=models.CharField(
|
|
blank=True,
|
|
default='',
|
|
help_text='Inventory source SCM branch. Project default used if blank. Only allowed if project allow_override field is set to true.',
|
|
max_length=1024,
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name='inventoryupdate',
|
|
name='scm_branch',
|
|
field=models.CharField(
|
|
blank=True,
|
|
default='',
|
|
help_text='Inventory source SCM branch. Project default used if blank. Only allowed if project allow_override field is set to true.',
|
|
max_length=1024,
|
|
),
|
|
),
|
|
]
|