mirror of
https://github.com/ansible/awx.git
synced 2026-04-07 02:59:21 -02:30
18 lines
383 B
Python
18 lines
383 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
# AWX
|
|
from awx.main.migrations import _credentialtypes as credentialtypes
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('main', '0027_v330_emitted_events'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunPython(credentialtypes.add_tower_verify_field),
|
|
]
|