mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-01-06 04:21:51 +00:00
20 lines
406 B
Python
20 lines
406 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('contest', '0007_contestsubmission_ac_time'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='contest',
|
|
old_name='show_rank',
|
|
new_name='real_time_rank',
|
|
),
|
|
]
|