mirror of
https://github.com/ansible/awx.git
synced 2026-09-16 17:00:12 -02:30
Re #1344 https://docs.djangoproject.com/en/1.8/ref/migration-operations/#runpython
17 lines
369 B
Python
17 lines
369 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from awx.main.migrations import _cleanup_deleted as cleanup_deleted
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0005_v300_migrate_facts'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunPython(cleanup_deleted.cleanup_deleted),
|
|
]
|