mirror of
https://github.com/ansible/awx.git
synced 2026-02-28 16:28:43 -03:30
20 lines
487 B
Python
20 lines
487 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0014_v300_invsource_cred'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='label',
|
|
name='organization',
|
|
field=models.ForeignKey(related_name='labels', to='main.Organization', help_text='Organization this label belongs to.'),
|
|
),
|
|
]
|