30 lines
809 B
Python
30 lines
809 B
Python
# Generated by Django 3.0.3 on 2020-03-13 01:22
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('question', '0002_auto_20200312_0945'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='questioncat',
|
|
options={'verbose_name': '题库类别/学科类别', 'verbose_name_plural': '题库类别/学科类别'},
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='questioncat',
|
|
name='subject',
|
|
),
|
|
migrations.AddField(
|
|
model_name='questioncat',
|
|
name='is_subject',
|
|
field=models.BooleanField(default=False, verbose_name='是否是学科'),
|
|
),
|
|
migrations.DeleteModel(
|
|
name='Subject',
|
|
),
|
|
]
|