mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-01-01 10:02:01 +00:00
14b850c652
contest,submission等表默认-create_time排序
24 lines
561 B
Python
24 lines
561 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.6 on 2017-07-17 13:24
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('contest', '0003_auto_20170217_0820'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='contest',
|
|
options={'ordering': ('-create_time',)},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='contestannouncement',
|
|
options={'ordering': ('-create_time',)},
|
|
),
|
|
]
|