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>
19 lines
353 B
Python
19 lines
353 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ircbot', '0002_botadmin_ircplugin'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='ircplugin',
|
|
old_name='autojoin',
|
|
new_name='autoload',
|
|
),
|
|
]
|