mirror of
https://github.com/ansible/awx.git
synced 2026-01-27 00:21:30 -03:30
20 lines
431 B
Python
20 lines
431 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0040_v310_artifacts'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='unifiedjob',
|
|
name='execution_node',
|
|
field=models.TextField(default=b'', editable=False, blank=True),
|
|
),
|
|
]
|