This commit is contained in:
Ross
2021-02-16 17:09:02 +00:00
parent a0b9e92aba
commit 4f60fccb06
10 changed files with 188 additions and 180 deletions
@@ -0,0 +1,18 @@
# Generated by Django 3.1.3 on 2021-02-16 13:15
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('longs', '0022_long_mark_scheme'),
]
operations = [
migrations.AlterField(
model_name='ciduseranswer',
name='score',
field=models.CharField(blank=True, choices=[('', 'Unmarked'), ('4', '4'), ('4.5', '4.5'), ('5', '5'), ('5.5', '5.5'), ('6', '6'), ('6.5', '6.5'), ('7', '7'), ('7.5', '7.5'), ('8', '8')], default='', max_length=3),
),
]