Brian S. Stephan
6136127c5f
this is the first step in trying to get the bot to support multiple servers with different channels, countdown triggers, and so on this also ends up affecting some configuration around: * dispatch * markov * admin privmsg form
24 lines
600 B
Python
24 lines
600 B
Python
# Generated by Django 3.1.2 on 2021-04-25 14:37
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dispatch', '0005_auto_20160116_1955'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='dispatcher',
|
|
name='bot_xmlrpc_host',
|
|
field=models.CharField(default='localhost', max_length=200),
|
|
),
|
|
migrations.AddField(
|
|
model_name='dispatcher',
|
|
name='bot_xmlrpc_port',
|
|
field=models.PositiveSmallIntegerField(default=13132),
|
|
),
|
|
]
|