mirror of
https://github.com/ansible/awx.git
synced 2026-09-16 17:00:12 -02:30
Mainly for sanity when merging migrations into long running branches.. but nice anyways I think
16 lines
365 B
Python
16 lines
365 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from awx.main.migrations import _system_tracking as system_tracking
|
|
from django.db import migrations
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0004_v300_fact_changes'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunPython(system_tracking.migrate_facts),
|
|
]
|