mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-01-07 13:02:02 +00:00
20 lines
432 B
Python
20 lines
432 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('submission', '0004_remove_submission_is_counted'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='submission',
|
|
name='contest_id',
|
|
field=models.IntegerField(null=True, blank=True),
|
|
),
|
|
]
|