18 lines
311 B
Python
18 lines
311 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ircbot', '0009_botadmin_user'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameModel(
|
|
old_name='BotAdmin',
|
|
new_name='BotUser',
|
|
),
|
|
]
|