this runs with a basic model and even more basic test, but I'm not committing those yet as I'm still playing with the model (lest I make 30 revisions right off the bat) Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
23 lines
560 B
Python
23 lines
560 B
Python
# -*- coding: utf-8 -*-
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ircbot', '0013_auto_20150917_2255'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='ircchannel',
|
|
name='topic_by',
|
|
field=models.CharField(default='', blank=True, max_length=200),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='ircchannel',
|
|
name='topic_msg',
|
|
field=models.TextField(default='', blank=True),
|
|
),
|
|
]
|