Added migration for JSONField
This commit is contained in:
@@ -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}),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user