mirror of
https://github.com/ansible/awx.git
synced 2026-05-22 08:17:39 -02:30
remove system tracking
* Leave the artisanal handcrafted migration from vendored fact scan to external fact gathering.
This commit is contained in:
26
awx/main/migrations/0071_v350_remove_system_tracking.py
Normal file
26
awx/main/migrations/0071_v350_remove_system_tracking.py
Normal file
@@ -0,0 +1,26 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.16 on 2019-04-10 12:25
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('main', '0070_v350_gce_instance_id'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterIndexTogether(
|
||||
name='fact',
|
||||
index_together=set([]),
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='fact',
|
||||
name='host',
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='Fact',
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user