11# -*- coding: utf-8 -*-
22# Generated by Django 1.9 on 2015-12-23 09:04
3+ # Edited manually on 2020-01-20
4+ import collections
35import uuid
46
57import django .db .models .deletion
@@ -26,7 +28,7 @@ class Migration(migrations.Migration):
2628 ('cost' , models .FloatField ()),
2729 ('cost_text' , models .CharField (blank = True , max_length = 24 )),
2830 ('status' , model_utils .fields .StatusField (choices = [('up' , 'up' ), ('down' , 'down' )], default = 'up' , max_length = 100 , no_check_for_status = True )),
29- ('properties' , jsonfield .fields .JSONField (blank = True , default = dict )),
31+ ('properties' , jsonfield .fields .JSONField (blank = True , default = dict , dump_kwargs = { 'indent' : 4 }, load_kwargs = { 'object_pairs_hook' : collections . OrderedDict } )),
3032 ],
3133 options = {
3234 'abstract' : False ,
@@ -40,7 +42,7 @@ class Migration(migrations.Migration):
4042 ('modified' , model_utils .fields .AutoLastModifiedField (default = django .utils .timezone .now , editable = False , verbose_name = 'modified' )),
4143 ('label' , models .CharField (blank = True , max_length = 64 )),
4244 ('addresses' , models .CharField (db_index = True , max_length = 255 )),
43- ('properties' , jsonfield .fields .JSONField (blank = True , default = dict )),
45+ ('properties' , jsonfield .fields .JSONField (blank = True , default = dict , dump_kwargs = { 'indent' : 4 }, load_kwargs = { 'object_pairs_hook' : collections . OrderedDict } )),
4446 ],
4547 options = {
4648 'abstract' : False ,
0 commit comments