mirror of
https://github.com/ansible/awx.git
synced 2026-03-09 13:39:27 -02:30
Migration for dropping implicit host inventory,name ordering
This commit is contained in:
18
awx/main/migrations/0018_v300_host_ordering.py
Normal file
18
awx/main/migrations/0018_v300_host_ordering.py
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('main', '0017_v300_prompting_migrations'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='host',
|
||||||
|
options={'ordering': ('name',)},
|
||||||
|
),
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user