mirror of
https://github.com/ansible/awx.git
synced 2026-01-24 07:51:23 -03:30
Merge pull request #4087 from chrismeyersfsu/fix-inventory_uniqueness
inventory is unique on <name, org>
This commit is contained in:
commit
249ab75b3d
19
awx/main/migrations/0052_v310_inventory_name_non_unique.py
Normal file
19
awx/main/migrations/0052_v310_inventory_name_non_unique.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', '0051_v310_job_project_update'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='inventory',
|
||||
name='name',
|
||||
field=models.CharField(max_length=512),
|
||||
),
|
||||
]
|
||||
Loading…
x
Reference in New Issue
Block a user