22 lines
571 B
Python
22 lines
571 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ircbot', '0003_auto_20150512_1934'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Alias',
|
|
fields=[
|
|
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
|
('pattern', models.CharField(unique=True, max_length=200)),
|
|
('replacement', models.CharField(max_length=200)),
|
|
],
|
|
),
|
|
]
|