diff --git a/django_q/migrations/0004_auto_20150710_1043.py b/django_q/migrations/0004_auto_20150710_1043.py new file mode 100644 index 0000000..e5f7a42 --- /dev/null +++ b/django_q/migrations/0004_auto_20150710_1043.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('django_q', '0003_auto_20150708_1326'), + ] + + operations = [ + migrations.AlterModelOptions( + name='failure', + options={'verbose_name_plural': 'Failed tasks', 'verbose_name': 'Failed task', 'ordering': ['-stopped']}, + ), + migrations.AlterModelOptions( + name='success', + options={'verbose_name_plural': 'Successful tasks', 'verbose_name': 'Successful task', 'ordering': ['-stopped']}, + ), + migrations.AlterModelOptions( + name='task', + options={'ordering': ['-stopped']}, + ), + ]