mirror of
https://github.com/ansible/awx.git
synced 2026-02-26 15:36:04 -03:30
This JSONBlob field type is a wrapper around Django's new generic JSONField, but with the database column type forced to be text. This should behave close enough to our old wrapper around django-jsonfield's JSONField and will avoid needing to do the out-of-band database migration.
14 lines
348 B
Python
14 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.JSONBlob(null=True))]
|