Skip to content
Snippets Groups Projects
Unverified Commit 399be250 authored by Aarif's avatar Aarif Committed by GitHub
Browse files

Merge pull request #23121 from edx/jsonfield-migration

Added migration for JSONField
parents 28b657ef 41c886a4
No related branches found
No related tags found
No related merge requests found
# -*- coding: utf-8 -*-
# Generated by Django 1.11.28 on 2020-02-17 10:58
from __future__ import unicode_literals
import collections
from django.db import migrations
import jsonfield.encoder
import jsonfield.fields
class Migration(migrations.Migration):
dependencies = [
('site_configuration', '0002_auto_20160720_0231'),
]
operations = [
migrations.AlterField(
model_name='siteconfiguration',
name='values',
field=jsonfield.fields.JSONField(blank=True, dump_kwargs={'cls': jsonfield.encoder.JSONEncoder, 'separators': (',', ':')}, load_kwargs={'object_pairs_hook': collections.OrderedDict}),
),
migrations.AlterField(
model_name='siteconfigurationhistory',
name='values',
field=jsonfield.fields.JSONField(blank=True, dump_kwargs={'cls': jsonfield.encoder.JSONEncoder, 'separators': (',', ':')}, load_kwargs={'object_pairs_hook': collections.OrderedDict}),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment