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}), + ), + ]