19 lines
485 B
Python
19 lines
485 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 = [
|
|
('physics', '0021_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),
|
|
),
|
|
]
|