1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-15 14:49:09 +00:00

[drafts] Add missing migration

This commit is contained in:
zhengxie
2018-09-15 16:06:57 +08:00
parent e793730939
commit e5a85cc054

View File

@@ -0,0 +1,23 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.11 on 2018-09-15 06:12
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('drafts', '0001_initial'),
]
operations = [
migrations.AlterModelOptions(
name='draft',
options={'ordering': ['-created_at', '-updated_at']},
),
migrations.AlterUniqueTogether(
name='draft',
unique_together=set([]),
),
]