21 lines
570 B
Python
21 lines
570 B
Python
# Generated by Django 3.0rc1 on 2019-11-27 19:23
|
|
|
|
from django.db import migrations
|
|
import jsonfield.encoder
|
|
import jsonfield.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('bots', '0013_auto_20191127_2214'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='cyberlinabotmoduleconfig',
|
|
name='_mtg_data',
|
|
field=jsonfield.fields.JSONField(blank=True, default={}, dump_kwargs={'cls': jsonfield.encoder.JSONEncoder, 'separators': (',', ':')}, load_kwargs={}, null=True),
|
|
),
|
|
]
|