Skip to content

Commit

Permalink
feat: add exam allowance model
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharis278 committed Jul 11, 2024
1 parent cc2f885 commit 28c99bb
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
33 changes: 33 additions & 0 deletions edx_exams/apps/core/migrations/0026_studentallowance.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Generated by Django 4.2.13 on 2024-07-11 15:45

from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
import django.utils.timezone
import model_utils.fields


class Migration(migrations.Migration):

dependencies = [
('core', '0025_proctoringprovider_org_key'),
]

operations = [
migrations.CreateModel(
name='StudentAllowance',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('created', model_utils.fields.AutoCreatedField(default=django.utils.timezone.now, editable=False, verbose_name='created')),
('modified', model_utils.fields.AutoLastModifiedField(default=django.utils.timezone.now, editable=False, verbose_name='modified')),
('extra_time_mins', models.PositiveIntegerField()),
('exam', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='core.exam')),
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
],
options={
'verbose_name': 'student allowance',
'db_table': 'exams_studentallowance',
'unique_together': {('user', 'exam')},
},
),
]
20 changes: 20 additions & 0 deletions edx_exams/apps/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,3 +428,23 @@ def _sync_exams_with_new_provider(cls, course_id, new_provider):
exam.save()

return len(exams)


class StudentAllowance(TimeStampedModel): # pragma: no cover
"""
Allowance for extra time in an exam
TODO: We should remove the no cover pragma once we have code that
uses this model.
"""
user = models.ForeignKey(User, db_index=True, on_delete=models.CASCADE)

exam = models.ForeignKey(Exam, on_delete=models.CASCADE)

extra_time_mins = models.PositiveIntegerField()

class Meta:
""" Meta class for this Django model """
db_table = 'exams_studentallowance'
verbose_name = 'student allowance'
unique_together = ('user', 'exam')

0 comments on commit 28c99bb

Please sign in to comment.