mirror of
https://github.com/ansible/awx.git
synced 2026-03-14 07:27:28 -02:30
include migration
This commit is contained in:
19
awx/main/migrations/0015_v300_label_changes.py
Normal file
19
awx/main/migrations/0015_v300_label_changes.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# -*- 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.'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user