You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
735 B

# Generated by Django 3.0rc1 on 2019-11-27 19:14
from django.db import migrations, models
import jsonfield.encoder
import jsonfield.fields
class Migration(migrations.Migration):
dependencies = [
('bots', '0012_auto_20191127_2139'),
]
operations = [
migrations.AddField(
model_name='cyberlinabotmoduleconfig',
name='_mtg_data',
field=jsonfield.fields.JSONField(default='{}', dump_kwargs={'cls': jsonfield.encoder.JSONEncoder, 'separators': (',', ':')}, load_kwargs={}),
),
migrations.AddField(
model_name='cyberlinabotmoduleconfig',
name='mtg_train',
field=models.TextField(blank=True, null=True),
),
]