后端增加题目 io mode 相关逻辑

This commit is contained in:
virusdefender
2019-03-12 16:10:21 +08:00
parent 1adfd35615
commit d969c6fe5e
3 changed files with 48 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
# Generated by Django 2.1.7 on 2019-03-12 07:13
import django.contrib.postgres.fields.jsonb
from django.db import migrations
import problem.models
class Migration(migrations.Migration):
dependencies = [
('problem', '0012_auto_20180501_0436'),
]
operations = [
migrations.AddField(
model_name='problem',
name='io_mode',
field=django.contrib.postgres.fields.jsonb.JSONField(default=problem.models._default_io_mode),
),
]