From c6b1906378ac89cac47051c0c9ec6c5f0a16ba02 Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Mon, 2 Feb 2015 09:40:11 +0100 Subject: [PATCH] Adding lost webhooks migration --- .../migrations/0004_auto_20150202_0834.py | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 taiga/webhooks/migrations/0004_auto_20150202_0834.py 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']}, + ), + ]