19 lines
450 B
Python
19 lines
450 B
Python
# Generated by Django 3.2.10 on 2022-04-04 21:56
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('longs', '0057_exam_user_scores'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='exam',
|
|
name='include_history',
|
|
field=models.BooleanField(default=False, help_text='If an exam should include history when taking'),
|
|
),
|
|
]
|