mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-01-16 09:16:12 +00:00
cadb480573
添加标签的逻辑变化 修改部分错误的测试用例
20 lines
400 B
Python
20 lines
400 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('problem', '0002_remove_problemtag_description'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='problem',
|
|
old_name='sample',
|
|
new_name='samples',
|
|
),
|
|
]
|