mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-01-16 09:16:12 +00:00
19 lines
353 B
Python
19 lines
353 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('problem', '0008_auto_20150922_1702'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelTable(
|
|
name='problem',
|
|
table='problem',
|
|
),
|
|
]
|