add markov to cyberlina (migrations)
This commit is contained in:
parent
61a8028ffe
commit
ab976beb5d
25
bots/migrations/0013_auto_20191127_2214.py
Normal file
25
bots/migrations/0013_auto_20191127_2214.py
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# 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),
|
||||||
|
),
|
||||||
|
]
|
20
bots/migrations/0014_auto_20191127_2223.py
Normal file
20
bots/migrations/0014_auto_20191127_2223.py
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# 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),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user