20 lines
432 B
Python
20 lines
432 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.db import models, migrations
|
|
import ircbot.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ircbot', '0012_ircchannel_markov_learn_from_channel'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='ircchannel',
|
|
name='name',
|
|
field=ircbot.models.LowerCaseCharField(unique=True, max_length=200),
|
|
),
|
|
]
|