ircbot: migration for the IrcPlugin ordering

This commit is contained in:
Brian S. Stephan 2015-05-19 22:00:30 -05:00
parent 062348ef99
commit 6205be109b
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('ircbot', '0006_auto_20150515_2141'),
]
operations = [
migrations.AlterModelOptions(
name='ircplugin',
options={'ordering': ['path']},
),
]