diff --git a/taiga/webhooks/migrations/0004_auto_20150202_0834.py b/taiga/webhooks/migrations/0004_auto_20150202_0834.py new file mode 100644 index 00000000..0517c952 --- /dev/null +++ b/taiga/webhooks/migrations/0004_auto_20150202_0834.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('webhooks', '0003_auto_20150122_1021'), + ] + + operations = [ + migrations.AlterModelOptions( + name='webhook', + options={'ordering': ['name', '-id']}, + ), + migrations.AlterModelOptions( + name='webhooklog', + options={'ordering': ['-created', '-id']}, + ), + ]