18 lines
326 B
Python
18 lines
326 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('ircbot', '0004_alias'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterModelOptions(
|
||
|
name='alias',
|
||
|
options={'verbose_name_plural': 'aliases'},
|
||
|
),
|
||
|
]
|