mirror of
https://github.com/ansible/awx.git
synced 2026-03-25 21:05:03 -02:30
add new column to `main_project` table - `signature_validation_credential` update project module for awx_collection - added input arg for `signature_validation_credential` Co-Authored-By: Lila Yasin <89486372+djyasin@users.noreply.github.com>
29 lines
869 B
Python
29 lines
869 B
Python
# Generated by Django 3.2.13 on 2022-08-24 14:02
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0166_alter_jobevent_host'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='project',
|
|
name='signature_validation_credential',
|
|
field=models.ForeignKey(
|
|
blank=True,
|
|
default=None,
|
|
null=True,
|
|
on_delete=django.db.models.deletion.SET_NULL,
|
|
related_name='projects_signature_validation',
|
|
to='main.credential',
|
|
help_text=_('An optional credential used for validating files in the project against unexpected changes.'),
|
|
),
|
|
),
|
|
]
|