one may want to set autojoin for a channel that hasn't yet had topic stuff logged, so don't require it in the form
25 lines
603 B
Python
25 lines
603 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ircbot', '0007_auto_20150519_2156'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='ircchannel',
|
|
name='topic_by',
|
|
field=models.CharField(default=b'', max_length=200, blank=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='ircchannel',
|
|
name='topic_msg',
|
|
field=models.TextField(default=b'', blank=True),
|
|
),
|
|
]
|