mirror of
https://github.com/ansible/awx.git
synced 2026-02-05 03:24:50 -03:30
13 lines
347 B
Python
13 lines
347 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
import awx.main.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [('conf', '0002_v310_copy_tower_settings')]
|
|
|
|
operations = [migrations.AlterField(model_name='setting', name='value', field=awx.main.fields.JSONBlob(null=True))]
|