# Generated by Django 6.0.1 on 2026-07-13 08:45 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('longs', '0039_useranswer_marker_feedback'), ] 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), ), ]