Files
penracourses/rapids/migrations/0021_exam_pass_mark.py
T
Ross 3a3ec75b1d .
2026-07-13 10:03:33 +01:00

19 lines
484 B
Python

# Generated by Django 6.0.1 on 2026-07-13 08:45
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('rapids', '0020_useranswer_time_answered'),
]
operations = [
migrations.AddField(
model_name='exam',
name='pass_mark',
field=models.FloatField(blank=True, help_text='Pass mark for the exam. If unset, defaults to 50% of the maximum score.', null=True),
),
]