From 41c886a42d19673de29332bdc7d0219be214e5ea Mon Sep 17 00:00:00 2001 From: Aarif Date: Mon, 17 Feb 2020 16:15:53 +0500 Subject: [PATCH] Added migration for JSONField --- .../migrations/0003_auto_20200217_1058.py | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 openedx/core/djangoapps/site_configuration/migrations/0003_auto_20200217_1058.py diff --git a/openedx/core/djangoapps/site_configuration/migrations/0003_auto_20200217_1058.py b/openedx/core/djangoapps/site_configuration/migrations/0003_auto_20200217_1058.py new file mode 100644 index 0000000000..3380ff1ebd --- /dev/null +++ b/openedx/core/djangoapps/site_configuration/migrations/0003_auto_20200217_1058.py @@ -0,0 +1,28 @@ +# -*- 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}), + ), + ]