mirror of
https://github.com/ansible/awx.git
synced 2026-02-12 07:04:45 -03:30
13 lines
348 B
Python
13 lines
348 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.JSONField(null=True))]
|