1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 18:21:12 +03:00

added missed job template label relationship

This commit is contained in:
Chris Meyers 2016-04-25 09:40:17 -04:00
parent f457e54a23
commit 16744e6b78

View File

@ -24,4 +24,9 @@ class Migration(migrations.Migration):
name='labels',
field=models.ManyToManyField(related_name='unifiedjob_labels', to='main.Label', blank=True),
),
migrations.AddField(
model_name='unifiedjobtemplate',
name='labels',
field=models.ManyToManyField(related_name='unifiedjobtemplate_labels', to='main.Label', blank=True),
),
]