Adding lost webhooks migration
parent
252f01c96c
commit
c6b1906378
|
@ -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']},
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue