Files
penracourses/longs/migrations/0045_alter_ciduseranswer_score.py
T
Ross d5f2e37817 .
2021-09-09 17:14:09 +01:00

19 lines
612 B
Python

# Generated by Django 3.2.6 on 2021-09-09 16:14
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('longs', '0044_auto_20210816_1306'),
]
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='', help_text='The final score for the candidate', max_length=3),
),
]