mirror of
https://github.com/ansible/awx.git
synced 2026-05-19 23:07:42 -02:30
New method to monkeypatch JSONField
This commit is contained in:
20
awx/conf/migrations/0003_v310_JSONField_changes.py
Normal file
20
awx/conf/migrations/0003_v310_JSONField_changes.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# -*- 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),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user