mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-01-01 10:02:01 +00:00
21 lines
454 B
Python
21 lines
454 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.3 on 2018-05-01 04:36
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('options', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='sysoptions',
|
|
name='key',
|
|
field=models.TextField(db_index=True, unique=True),
|
|
),
|
|
]
|