# Generated by Django 2.1.5 on 2019-11-16 00:05 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('bots', '0005_channelhelperbotmoduleconfig'), ] operations = [ migrations.CreateModel( name='OverlayBotModuleConfig', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('comment', models.TextField(blank=True, null=True)), ('image', models.ImageField(upload_to='')), ], options={ 'abstract': False, }, ), ]